diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-05-23 16:06:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-23 16:06:07 -0700 |
commit | 182fb4df9120257c2e6b041dd58eef3de5b530d2 (patch) | |
tree | d24989f220fef3b241a367f22ee0aad7fabe4c0b /t/t5516-fetch-push.sh | |
parent | e5e9714a106ab668ac982cf73f31919eb4e354fd (diff) | |
parent | a83619d692deeb2565335144078465acb2dd1457 (diff) | |
download | git-182fb4df9120257c2e6b041dd58eef3de5b530d2.tar.gz git-182fb4df9120257c2e6b041dd58eef3de5b530d2.tar.xz |
Merge branch 'pb/push'
* pb/push:
add special "matching refs" refspec
Diffstat (limited to 't/t5516-fetch-push.sh')
-rwxr-xr-x | t/t5516-fetch-push.sh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh index 3af03d482..c5c59335f 100755 --- a/t/t5516-fetch-push.sh +++ b/t/t5516-fetch-push.sh @@ -165,6 +165,47 @@ test_expect_success 'push with matching heads' ' ' +test_expect_success 'push with matching heads on the command line' ' + + mk_test heads/master && + git push testrepo : && + check_push_result $the_commit heads/master + +' + +test_expect_success 'failed (non-fast-forward) push with matching heads' ' + + mk_test heads/master && + git push testrepo : && + git commit --amend -massaged && + ! git push testrepo && + check_push_result $the_commit heads/master && + git reset --hard $the_commit + +' + +test_expect_success 'push --force with matching heads' ' + + mk_test heads/master && + git push testrepo : && + git commit --amend -massaged && + git push --force testrepo && + ! check_push_result $the_commit heads/master && + git reset --hard $the_commit + +' + +test_expect_success 'push with matching heads and forced update' ' + + mk_test heads/master && + git push testrepo : && + git commit --amend -massaged && + git push testrepo +: && + ! check_push_result $the_commit heads/master && + git reset --hard $the_commit + +' + test_expect_success 'push with no ambiguity (1)' ' mk_test heads/master && |