Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does a grey icon in remote GitHub mean

Can anyone please tell me why i have the grey icon when i push my files to github ? In side the app directory, there should be models, views , and controllers but in the remote GitHub I can't click in.

enter image description here

like image 395
BC2 Avatar asked Oct 25 '13 07:10

BC2


People also ask

How do I remove the white arrow from GitHub?

Nested Git repository:gitmodules file in your main repository), add, commit and push. The white arrow would then disappear, and you would be able to access that folder content on GitHub.

What is arrow GitHub?

On your machine, if you navigated to the directory with the arrow and tried to view hidden files, you'd see a . git folder, indicating that it is a repository. This means that it is a repo contained inside the outer repo that you had pushed to GitHub.


1 Answers

git rm --cached <folder_name> 

Then go to the parent directory and do:

git add . git commit -m "<your_message>" git push --all 
like image 85
Ankit Agrawal Avatar answered Oct 05 '22 14:10

Ankit Agrawal