Synopsis: git status gives
Changes not staged for commit:
(use "git add ..." to update what will be committed)
(use "git checkout -- ..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)modified: < folder name > (modified content, untracked content)
In case:
- 'git add' does not change the situation
- You are looking for a way to commit the untracked content
What is the right way to fix that?
There is a related question here: How to track untracked content?, A simple answer to the common problem is hiding at the second, non accepted answer. Hope this thread would add clarity.