From: Simon Ruderich Date: Thu, 21 Mar 2013 02:40:17 +0000 (+0100) Subject: git-am: show the final log message on "Applying:" indicator X-Git-Tag: v1.8.3-rc0~150^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b34a912989624de37f859b4d70d9eab4cfe285dd;p=thirdparty%2Fgit.git git-am: show the final log message on "Applying:" indicator The "Applying:" message "git am" shows to tell the user which patch is being applied has traditionally been to help identifying the input, but we started showing the edited result since f23272f3fd84 (git-am -i: report rewritten title, 2007-12-04), because it was found more confusing to show the original during an interactive session. Treat the modification by the applypatch-msg hook in a similar way and use the edited result in the progress indication, even though this is usually not interactive. Signed-off-by: Simon Ruderich Signed-off-by: Junio C Hamano --- diff --git a/git-am.sh b/git-am.sh index 202130f888..c092855dd7 100755 --- a/git-am.sh +++ b/git-am.sh @@ -778,13 +778,6 @@ To restore the original branch and stop patching run \"\$cmdline --abort\"." action=yes fi - if test -f "$dotest/final-commit" - then - FIRSTLINE=$(sed 1q "$dotest/final-commit") - else - FIRSTLINE="" - fi - if test $action = skip then go_next @@ -797,6 +790,13 @@ To restore the original branch and stop patching run \"\$cmdline --abort\"." stop_here $this fi + if test -f "$dotest/final-commit" + then + FIRSTLINE=$(sed 1q "$dotest/final-commit") + else + FIRSTLINE="" + fi + say "$(eval_gettext "Applying: \$FIRSTLINE")" case "$resolved" in