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.
views:
599answers:
2
+7
A:
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.
Daniel Bruce
2009-02-27 13:40:22