check untracked files git code example
Example 1: git see all tracked files
git ls-tree -r master --name-only
Example 2: how to avoid some files changes to not come in git status
git update-index --assume-unchanged <file>
Example 3: how to avoid some files changes to not come in git status
git rm --cached <file>