Guys, even after using "git add ." I still have untracked files that I can't commit.
There was another question with the same problem, but in that case it was related to case-sensitive folder. I didn't change the name of any folders here.
The . in the git add . command refers to the "current directory". So, running git add . will add all the files in the current directory and its subdirectories. You should ensure that you are in the correct directory before running git add ..
If you're one level down in a subdirectory, then git add .. would be equivalent to cd ..; git add ..
git commit -a(though the manual says: As a special shortcut,git commit -awill update the index with any files that you’ve modified or removed and create a commit, all in one step which does not say 'and will add untracked files'). So, can you add the files themselves manually?git status .will give you the status for just the current directory, if that's really what you want - but in this case, showing the status for everything was definitely helpful, since it showed you that you hadn't added everything.