Skip to content

Commit c5e610b

Browse files
Martin von Zweigbergkgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b325680 commit c5e610b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-rebase--am.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
case "$action" in
99
continue)
10-
git am --resolved --3way --resolvemsg="$resolvemsg" &&
10+
git am --resolved --resolvemsg="$resolvemsg" &&
1111
move_to_original_branch
1212
exit
1313
;;
1414
skip)
15-
git am --skip -3 --resolvemsg="$resolvemsg" &&
15+
git am --skip --resolvemsg="$resolvemsg" &&
1616
move_to_original_branch
1717
exit
1818
;;

0 commit comments

Comments
 (0)