diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-08 01:50:02 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-08 03:11:16 -0700 |
commit | 3a895e0268537da731f5efe914ece5e7eac35ef3 (patch) | |
tree | 144e4d1c663d4894ba5d9e8f3ede36721a12178d /templates | |
parent | 83ad63cfebdf652ff7c7b255d700d8b12c756913 (diff) | |
download | git-3a895e0268537da731f5efe914ece5e7eac35ef3.tar.gz |
templates/hooks--update: replace diffstat calls with git diff --stat
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/hooks--update | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/hooks--update b/templates/hooks--update index d7a8f0a849..76d5ac2477 100644 --- a/templates/hooks--update +++ b/templates/hooks--update @@ -60,7 +60,7 @@ then echo "Changes since $prev:" git rev-list --pretty $prev..$3 | $short echo --- - git diff $prev..$3 | diffstat -p1 + git diff --stat $prev..$3 echo --- fi ;; @@ -75,7 +75,7 @@ else base=$(git-merge-base "$2" "$3") case "$base" in "$2") - git diff "$3" "^$base" | diffstat -p1 + git diff --stat "$3" "^$base" echo echo "New commits:" ;; |