what's that unusual folder (marked in red)? It seems to be an untracked folder. I tried to manually adding the file with:
git add folder/untracked_folder
but it does not seem to change anything.
Anyone have suggestions?
That is a submodule
.
Repositories with submodules when cloned without --recursive
option creates empty directories for submodules. Either you clone using,
git clone <repo-url> --recursive
or use,
git submodule update --init