I push a repo containing 2 folders - a Nodejs backend and a react client. On push, I would notice that the client frontend isn't highlightable. It would show an arrow instead.
Here is what it looks like:
Any idea what went wrong?
I push a repo containing 2 folders - a Nodejs backend and a react client. On push, I would notice that the client frontend isn't highlightable. It would show an arrow instead.
Here is what it looks like:
Any idea what went wrong?
This happens when you have nested git repositories. They are called Git submodules. Your folder structure look like this:
.
├── .git
├── client
│ └── .git
└── backend
If you want to keep everything under one repository, with no Git submodules, you can simply delete client/.git
.