]> rtime.felk.cvut.cz Git - git.git/commitdiff
am -3: recover the diagnostic messages for corrupt patches
authorJunio C Hamano <gitster@pobox.com>
Fri, 9 Apr 2010 23:58:28 +0000 (16:58 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Apr 2010 18:20:27 +0000 (11:20 -0700)
"git am -3" first tries to apply the patch without any extra trick, and
applies it to a synthesized tree for 3-way merge after the first attempt
fails.  "git apply" exits with status 1 for a patch that is well-formed
but is not applicable (and it dies on other errors with non-zereo, non-1
status) and has an optimization to fall back to the 3-way merge only in
the case.

An earlier patch 3ddd170 (am: suppress apply errors when using 3-way,
2009-06-16) squelched diagnostic messages from the first attempt, not to
be shown to the end user.  This worked reasonably well if the reason the
first application failed was because the patch was made against a wrong
version.

When the patch is corrupt (e.g. line-wrapped or leading whitespaces got
dropped), however, because the second patch application is not even
attempted, the error message from the first application is never shown
and is forever lost.  This message is necessary to locate where the patch
is corrupt and fix it up.

We could fix this issue by reverting 3dd170, or keeping the error message
to somewhere and showing it, but because this is an error codepath, the
easiest is to disable the optimization.  The second patch application is
attempted even when the input is corrupt, and it will notice, diagnose,
and stop with an error message.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-am.sh

index e26c54a3e24265d26b6d7acb07d0bf89135bb4bc..4e0e40677c4583fe65a3c503115dca16a515ad81 100755 (executable)
--- a/git-am.sh
+++ b/git-am.sh
@@ -534,7 +534,7 @@ do
                ;;
        esac
 
-       if test $apply_status = 1 && test "$threeway" = t
+       if test $apply_status != 0 && test "$threeway" = t
        then
                if (fall_back_3way)
                then