Reputation: 33
My components folder is unclickable in my github repository. It's an unclickable blue folder.
What to do? And what is the reasoning for it being unclickable?
Picture of problem:
Upvotes: 2
Views: 2107
Reputation: 1325077
That is a nested Git rpeository, which means the parent repo has only recorded the root folder SHA1 (called "gitlink"), but not (like a git submodule) the remote repo URL.
You should remove the folder entry with:
# no trailing /
git rm --cached -- components
git commit -m "remove components entry"
git push
Upvotes: 2