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
  • 10,416
  • 2
  • 24
  • 55
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,129,465
  • 480
  • 4,036
  • 4,755