<Comments for after diffstat:> I tend to think git-rebase--merge is less popular than the other rebase types, leading to it being more overlooked and less well tested than the other ones. This git-$cmd usage seems to support that argument. Anyway, this patch may be irrelevant if others agree with my goal to delete git-rebase--merge and implement --merge on top of the --interactive machinery, but sending it along in case others don't agree with that goal. </Comments> Signed-off-by: Elijah Newren <newren@xxxxxxxxx> --- git-rebase--merge.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-rebase--merge.sh b/git-rebase--merge.sh index cf4c042214..aa2f2f0872 100644 --- a/git-rebase--merge.sh +++ b/git-rebase--merge.sh @@ -71,7 +71,7 @@ call_merge () { test -z "$strategy" && strategy=recursive # If cmt doesn't have a parent, don't include it as a base base=$(git rev-parse --verify --quiet $cmt^) - eval 'git-merge-$strategy' $strategy_opts $base ' -- "$hd" "$cmt"' + eval 'git merge-$strategy' $strategy_opts $base ' -- "$hd" "$cmt"' rv=$? case "$rv" in 0) @@ -88,7 +88,7 @@ call_merge () { ;; *) die "Unknown exit code ($rv) from command:" \ - "git-merge-$strategy $cmt^ -- HEAD $cmt" + "git merge-$strategy $cmt^ -- HEAD $cmt" ;; esac } -- 2.18.0.rc0.46.g9cee8fce43