It looks like git status -uno will show you only files that git is tracking, without showing anything else in the directory. Not exactly what you asked ...
you can use no to have git status return more quickly without showing untracked files.
9 Answers · To list all unstaged tracked changed files: git diff --name-only · To list all staged tracked changed files: git diff --name-only --staged · To ...
Show modified files in the output. -o; --others. Show other (i.e. untracked) files in the output. -i; --ignored. Show only ignored files in the output. When showing ...
It does not rewrite any commits but after the command finishes my working tree is clean (i.e. the previously modified files do no longer show up as ...
This means you have a clean working directory; in other words, none of your tracked files are modified. Git also doesn't see any untracked files, or they would be ...
When I run git status , it shows all files in the branch as up to date and nothing to commit except for a couple of untracked files. When I run git ...
By default, git stash will stash only modified and staged tracked files. If you specify ...
I relatively frequently run into a situation where git status will show one or more lfs -tracked files as being modified when they are not in fact ...
This topic explains how to keep track of the changes that you and