summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7bbd8d6)
raw | patch | inline | side by side (parent: 7bbd8d6)
author | Jonas Flodén <jonas@floden.nu> | |
Fri, 16 Jan 2009 14:34:47 +0000 (15:34 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 18 Jan 2009 05:43:33 +0000 (21:43 -0800) |
When git-am fails it's not always easy to see which patch failed,
since it's often hidden by a lot of error messages.
Add an extra line which prints the name of the failed patch just
before the resolve message to make it easier to find.
Signed-off-by: Jonas Flodén <jonas@floden.nu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
since it's often hidden by a lot of error messages.
Add an extra line which prints the name of the failed patch just
before the resolve message to make it easier to find.
Signed-off-by: Jonas Flodén <jonas@floden.nu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-am.sh | patch | blob | history |
diff --git a/git-am.sh b/git-am.sh
index 4b157fe5d536fdbdbf85e0e06c419b5927a90867..ae2fe5651c50efc8613c6754c61efa9500e56fbd 100755 (executable)
--- a/git-am.sh
+++ b/git-am.sh
fi
if test $apply_status != 0
then
- echo Patch failed at $msgnum.
+ echo "Patch failed at $msgnum $FIRSTLINE"
stop_here_user_resolve $this
fi