Kevin Steve
Kevin Steve

Reputation: 33

github folder unclickable

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:

Picture of problem

Upvotes: 2

Views: 2107

Answers (1)

VonC
VonC

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

Related Questions