Display the subject of the commit just made. Useful e.g. to figure out what I did from screen history, or to make sure subject line is short enough and makes sense on its own. Signed-off-by: Michael S. Tsirkin <mst@xxxxxxxxxxxxxxxxxx> --- > Quoting Junio C Hamano <junkio@xxxxxxx>: > Close but no cigar. You broke it for a merge commit, I think. > > Perhaps > > pretty="format:Created${initial_commit:+ initial} commit %h: %s%n" > git-diff-tree --always --shortstart --summary --root --pretty="$pretty" HEAD OK, thanks fo rpointing this out. But why the extra %n at the end? The following seems to work well for me: diff --git a/git-commit.sh b/git-commit.sh index 9e0959a..f28fc24 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -649,8 +649,9 @@ then fi if test -z "$quiet" then + commit=`git-diff-tree --always --shortstat --pretty="format:%h: %s"\ + --summary --root HEAD --` echo "Created${initial_commit:+ initial} commit $commit" - git-diff-tree --shortstat --summary --root --no-commit-id HEAD -- fi fi -- MST - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html