From: Martin von Zweigbergk Date: Tue, 28 Dec 2010 09:30:46 +0000 (+0100) Subject: git-rebase--am: remove unnecessary --3way option X-Git-Tag: ko-pu~6^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=322a42bf1b5292a18e1ff0b91a08d00ec68ffe95;p=git.git git-rebase--am: remove unnecessary --3way option 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 Signed-off-by: Junio C Hamano --- diff --git a/git-rebase--am.sh b/git-rebase--am.sh index 5acfa0037..95608c6c2 100644 --- a/git-rebase--am.sh +++ b/git-rebase--am.sh @@ -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 ;;