Merge branch 'kb/msvc-compile'
[gitweb.git] / t / t3501-revert-cherry-pick.sh
index 46aaf2f511f6d37e8552d0b12fa64f7e30accd1d..bff6ffe08817ed0c057909aa1d3f93140cf6a3e0 100755 (executable)
@@ -109,4 +109,24 @@ test_expect_success 'cherry-pick on unborn branch' '
        ! test_cmp_rev initial HEAD
 '
 
+test_expect_success 'cherry-pick "-" to pick from previous branch' '
+       git checkout unborn &&
+       test_commit to-pick actual content &&
+       git checkout master &&
+       git cherry-pick - &&
+       echo content >expect &&
+       test_cmp expect actual
+'
+
+test_expect_success 'cherry-pick "-" is meaningless without checkout' '
+       test_create_repo afresh &&
+       (
+               cd afresh &&
+               test_commit one &&
+               test_commit two &&
+               test_commit three &&
+               test_must_fail git cherry-pick -
+       )
+'
+
 test_done