How do I do a 'git status' so it doesn't display untracked files without using .gitignore? I want to get modification status information on tracked files only.

link|improve this question

feedback

2 Answers

up vote 20 down vote accepted

Use this:

git status -uno

which is equivalent to:

git status --untracked-files=no

It's a bit hidden in the manuals, but the manpage for status says "supports the same options as git-commit", so that's where you'd have to look.

link|improve this answer
feedback

Also:

git config status.showuntrackedfiles no
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.