diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-04-14 00:15:30 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-13 16:48:24 -0700 |
commit | d75f7952ef56408baa03ff82ded52b9289249d5a (patch) | |
tree | 743d15298a116ea5aa378e4662c90f10a631b452 /git-diff.sh | |
parent | f327dbced25a3c6fcc0b84d2d6adffa9343b09f0 (diff) | |
download | git-d75f7952ef56408baa03ff82ded52b9289249d5a.tar.gz |
diff-options: add --stat (take 2)
Now, you can say "git diff --stat" (to get an idea how many changes are
uncommitted), or "git log --stat".
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-diff.sh')
-rwxr-xr-x | git-diff.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/git-diff.sh b/git-diff.sh index dc0dd312bf..0fe6770749 100755 --- a/git-diff.sh +++ b/git-diff.sh @@ -30,9 +30,11 @@ case " $flags " in cc_or_p=--cc ;; esac -# If we do not have --name-status, --name-only, -r, or -c default to --cc. +# If we do not have --name-status, --name-only, -r, -c or --stat, +# default to --cc. case " $flags " in -*" '--name-status' "* | *" '--name-only' "* | *" '-r' "* | *" '-c' "* ) +*" '--name-status' "* | *" '--name-only' "* | *" '-r' "* | *" '-c' "* | \ +*" '--stat' "*) ;; *) flags="$flags'$cc_or_p' " ;; |