Merge branch 'js/rebase-i-dedup-call-to-rerere'
authorJunio C Hamano <gitster@pobox.com>
Fri, 3 Jun 2016 21:38:01 +0000 (14:38 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 3 Jun 2016 21:38:01 +0000 (14:38 -0700)
"git rebase -i", after it fails to auto-resolve the conflict, had
an unnecessary call to "git rerere" from its very early days, which
was spotted recently; the call has been removed.

* js/rebase-i-dedup-call-to-rerere:
rebase -i: remove an unnecessary 'rerere' invocation

git-rebase--interactive.sh
index 9d2bfb7a16afc10c1a52fe80e718d6199df0e331..6e96abcc3c6b942eed3e8c522f089d823b02a1fa 100644 (file)
@@ -192,7 +192,6 @@ make_patch () {
 die_with_patch () {
        echo "$1" > "$state_dir"/stopped-sha
        make_patch "$1"
-       git rerere
        die "$2"
 }