git-commit: show --summary after successful commit.
authorJunio C Hamano <junkio@cox.net>
Wed, 25 Oct 2006 04:48:55 +0000 (21:48 -0700)
committerJunio C Hamano <junkio@cox.net>
Sat, 25 Nov 2006 08:20:01 +0000 (00:20 -0800)
Sometimes people accidentally commit files in wrong mode bits.
Show --summary output for the HEAD commit after successful commit
as a final sanity check.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/tutorial-2.txt
git-commit.sh

index 42b6e7d..6389de5 100644 (file)
@@ -23,6 +23,7 @@ $ echo 'hello world' > file.txt
 $ git add .
 $ git commit -a -m "initial commit"
 Committing initial tree 92b8b694ffb1675e5975148e1121810081dbdffe
+ create mode 100644 file.txt
 $ echo 'hello world!' >file.txt
 $ git commit -a -m "add emphasis"
 ------------------------------------------------
index 81c3a0c..7e9742d 100755 (executable)
@@ -629,4 +629,7 @@ if test -x "$GIT_DIR"/hooks/post-commit && test "$ret" = 0
 then
        "$GIT_DIR"/hooks/post-commit
 fi
+
+test "$ret" = 0 && git-diff-tree --summary --root --no-commit-id HEAD
+
 exit "$ret"