Code

lib-rebase: Allow comments and blank lines to be added to the rebase script
[git.git] / t / t7608-merge-messages.sh
index 9d10583916d42092eaee29fbcafc73b1c827773b..28d56797b17d5b1426d6c7c36e37b956731f1dfd 100755 (executable)
@@ -38,7 +38,7 @@ test_expect_success 'merge tag' '
        check_oneline "Merge commit Qtag-1Q"
 '
 
-test_expect_failure 'ambiguous tag' '
+test_expect_success 'ambiguous tag' '
        git checkout -b ambiguous master &&
        test_commit ambiguous &&
        git checkout master &&
@@ -47,4 +47,14 @@ test_expect_failure 'ambiguous tag' '
        check_oneline "Merge commit QambiguousQ"
 '
 
+test_expect_success 'remote branch' '
+       git checkout -b remote master &&
+       test_commit remote-1 &&
+       git update-ref refs/remotes/origin/master remote &&
+       git checkout master &&
+       test_commit master-5 &&
+       git merge origin/master &&
+       check_oneline "Merge remote branch Qorigin/masterQ"
+'
+
 test_done