Is there an option to git status
so that untracked files won't be shown?
I tried git status -u no
but that hides everything and tells:
"nothing to commit, working directory clean"
even thouh there are files both staged for commit and not staged for commit.
I want it to show only files staged for commit and modified ones but skip untracked files.
You need:
git status -uno
i.e., without the space, or:
git status --untracked-files=no
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With