Last Updated: February 25, 2016
·
616
· wazery

"git status" without untracked files

When having several untracked files within your git local repository, "git status" outputs a big chunk of lines.

After you have added the files you want to commit, those lines are irrelevant. Get rid of those lines with -uno parameter, do it in the following way:

git status -uno

"-uno" comes from "--untracked-files=no"

Don't worry about untracked files, they won't be deleted. They are only hidden from "git status" output.