I have commited the code in GitHub but I am facing a problem to open the sample-ui folder. Can anyone help me? The picture of the problem we are facing is posted below:
Asked
Active
Viewed 59 times
1 Answers
1
That means the folder is a nested git repository (you have a .git/
subfolder in it).
If you don't need its history, you should:
git rm --cached sample-ui
rm -Rf sample-ui/.git
git add sample-ui
git commit -m "Add sample-ui content"
git push

VonC
- 1,262,500
- 529
- 4,410
- 5,250