I have this setting in my .gitconfig
:
[format]
pretty = oneline
Which nicely formats my output of git-log
. However it also changes the output of git-show
(and git-status
), which annoys me, because when I use git-show
, I usually want to see more detailed output than when I'm using git-log
.
Basically I want the default pretty
setting of git-show
to be different than the default pretty
setting of git-log
. Is this somehow possibly?