1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-06 09:13:01 +01:00

Merge branch 'jc/commit-careful'

* jc/commit-careful:
  git-commit: show --summary after successful commit.
This commit is contained in:
Junio C Hamano 2006-12-13 11:03:46 -08:00
commit 490e092def
2 changed files with 4 additions and 0 deletions

View 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"
------------------------------------------------

View file

@ -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"