Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can I not open my folder in GitHub?

Tags:

git

github

The "src" folder in one of my repository is grayed out (and is not clickable):

screenshot

I took the following steps before pushing to the GitHub:

  1. I created a new repository on GitHub.
  2. I initialize dthe git on my project.
  3. git add .
  4. git commit -m "comment"
  5. git remote add origin url
  6. git push -u origin master
  7. username
  8. password

The "src" folder is showing up on GitHub but cannot be opened. What can I do?

like image 244
Anushka Avatar asked Feb 07 '15 16:02

Anushka


1 Answers

I solved the problem by deleting .git folder inside subfolders (Hidden files and folders). You should have only one .git in the root folder.

Git recognized that folder as modified but untracked content.
There are other solutions for this problem, look this thread: Git - how to track untracked content?

like image 56
Ivan Aracki Avatar answered Oct 28 '22 22:10

Ivan Aracki