How can I get 'git status' to always use short format?

Posted by Adam Lindberg on Stack Overflow See other posts from Stack Overflow or by Adam Lindberg
Published on 2010-05-28T08:48:54Z Indexed on 2010/05/28 8:51 UTC
Read the original article Hit count: 277

Filed under:
|
|

I'd like git status to always use the short format:

$ git status --short
 M src/meck.erl
 M test/meck_tests.erl
?? erl_crash.dump
?? meck_test_module.coverdata

There does not seem to exist a configuration option for this, and git config --global alias.status "status --short" does not work. I haven't managed to create and alias in zsh either.

How can I make git status to use the short format by default.

© Stack Overflow or respective owner

Related posts about git

Related posts about zsh