0

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:

Screenshot

ErikMD
  • 13,377
  • 3
  • 35
  • 71
MUNNA1628
  • 9
  • 2
  • 1
    I don't see any error message or anything on that screenshot. What problem is it showing us? – IMSoP Jun 05 '21 at 21:56

1 Answers1

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