diff options
author | Phil Hord <hordp@cisco.com> | 2012-07-10 18:52:28 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-17 10:59:17 -0700 |
commit | 743bf6d8b07f0c5717bf5c37b8b50ae9de619c83 (patch) | |
tree | 7f5fa1c98bca0b31bce92d861d560ff2bd99b62a /git-stash.sh | |
parent | 79dc2d0b0250b4a90dfc83ae69c116e08c9df0a3 (diff) | |
download | git-743bf6d8b07f0c5717bf5c37b8b50ae9de619c83.tar.gz |
stash: invoke rerere in case of conflict
"stash apply" directly calls a backend merge function which does not
automatically invoke rerere. This confuses mergetool when leftover
rerere state is left behind from previous merges.
Invoke rerere explicitly when we encounter a conflict during stash
apply. This turns the test introduced by the previous commit to
succeed.
Signed-off-by: Phil Hord <hordp@cisco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-x | git-stash.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-stash.sh b/git-stash.sh index fe4ab28b2e..63d2f59fe5 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -469,6 +469,7 @@ apply_stash () { else # Merge conflict; keep the exit status from merge-recursive status=$? + git rerere if test -n "$INDEX_OPTION" then gettextln "Index was not unstashed." >&2 |