Skip to content

Commit

Permalink
git-rebase--am: remove unnecessary --3way option
Browse files Browse the repository at this point in the history
Since 22db240 (git-am: propagate --3way options as well, 2008-12-04),
the --3way has been propageted across failure, so it is since
pointless to pass it to git-am when resuming.

Signed-off-by: Martin von Zweigbergk <martin.von.zweigbergk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Martin von Zweigbergk authored and gitster committed Feb 10, 2011
1 parent b325680 commit c5e610b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-rebase--am.sh
Expand Up @@ -7,12 +7,12 @@

case "$action" in
continue)
git am --resolved --3way --resolvemsg="$resolvemsg" &&
git am --resolved --resolvemsg="$resolvemsg" &&
move_to_original_branch
exit
;;
skip)
git am --skip -3 --resolvemsg="$resolvemsg" &&
git am --skip --resolvemsg="$resolvemsg" &&
move_to_original_branch
exit
;;
Expand Down

0 comments on commit c5e610b

Please sign in to comment.