Unless any specific 'git am' options are used. Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- git-rebase.sh | 8 ++++---- t/t3407-rebase-abort.sh | 2 +- t/t3420-rebase-autostash.sh | 2 +- t/t3425-rebase-topology-merges.sh | 6 +++--- t/t5520-pull.sh | 2 +- t/t9106-git-svn-commit-diff-clobber.sh | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/git-rebase.sh b/git-rebase.sh index ebe87a3..f0291df 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -415,13 +415,13 @@ elif test -n "$do_merge" then type=merge state_dir="$merge_dir" -elif test -n "$keep_empty" +elif test -n "$git_am_opt" then - type=cherrypick - state_dir="$merge_dir" -else type=am state_dir="$apply_dir" +else + type=cherrypick + state_dir="$merge_dir" fi if test -z "$rebase_root" diff --git a/t/t3407-rebase-abort.sh b/t/t3407-rebase-abort.sh index a6a6c40..2699b08 100755 --- a/t/t3407-rebase-abort.sh +++ b/t/t3407-rebase-abort.sh @@ -96,7 +96,7 @@ testrebase() { ' } -testrebase "" .git/rebase-apply +testrebase "" .git/rebase-merge testrebase " --merge" .git/rebase-merge test_done diff --git a/t/t3420-rebase-autostash.sh b/t/t3420-rebase-autostash.sh index c179262..58bf705 100755 --- a/t/t3420-rebase-autostash.sh +++ b/t/t3420-rebase-autostash.sh @@ -162,7 +162,7 @@ test_expect_success "rebase: noop rebase" ' ) ' -testrebase "" .git/rebase-apply +testrebase "" .git/rebase-merge testrebase " --merge" .git/rebase-merge testrebase " --interactive" .git/rebase-merge diff --git a/t/t3425-rebase-topology-merges.sh b/t/t3425-rebase-topology-merges.sh index 1d195fb..99b4535 100755 --- a/t/t3425-rebase-topology-merges.sh +++ b/t/t3425-rebase-topology-merges.sh @@ -71,7 +71,7 @@ test_run_rebase () { " } #TODO: make order consistent across all flavors of rebase -test_run_rebase success 'e n o' '' +test_run_rebase success 'n o e' '' test_run_rebase success 'e n o' -m test_run_rebase success 'n o e' -i @@ -88,7 +88,7 @@ test_run_rebase () { " } #TODO: make order consistent across all flavors of rebase -test_run_rebase success 'd e n o' '' +test_run_rebase success 'd n o e' '' test_run_rebase success 'd e n o' -m test_run_rebase success 'd n o e' -i @@ -105,7 +105,7 @@ test_run_rebase () { " } #TODO: make order consistent across all flavors of rebase -test_run_rebase success 'd e n o' '' +test_run_rebase success 'd n o e' '' test_run_rebase success 'd e n o' -m test_run_rebase success 'd n o e' -i diff --git a/t/t5520-pull.sh b/t/t5520-pull.sh index ed4d9c8..751b50d 100755 --- a/t/t5520-pull.sh +++ b/t/t5520-pull.sh @@ -273,7 +273,7 @@ test_expect_success 'setup for avoiding reapplying old patches' ' test_expect_success 'git pull --rebase does not reapply old patches' ' (cd dst && test_must_fail git pull --rebase && - test 1 = $(find .git/rebase-apply -name "000*" | wc -l) + test 1 = $(cat .git/sequencer/todo | wc -l) ) ' diff --git a/t/t9106-git-svn-commit-diff-clobber.sh b/t/t9106-git-svn-commit-diff-clobber.sh index f6d7ac7..b9cec33 100755 --- a/t/t9106-git-svn-commit-diff-clobber.sh +++ b/t/t9106-git-svn-commit-diff-clobber.sh @@ -92,7 +92,7 @@ test_expect_success 'multiple dcommit from git svn will not clobber svn' " test_expect_success 'check that rebase really failed' ' - test -d .git/rebase-apply + test -d .git/rebase-merge ' test_expect_success 'resolve, continue the rebase and dcommit' " -- 1.8.4-fc -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html