3 test_description='Basic fetch/push functionality.
5 This test checks the following functionality:
9 * fast-forward detection, and overriding it
12 * --porcelain output format
23 rm -fr "$repo_name" &&
28 git config receive.denyCurrentBranch warn &&
29 mv .git/hooks .git/hooks-disabled
37 mk_empty "$repo_name" &&
41 git push "$repo_name" $the_first_commit:refs/$ref ||
47 echo "$the_first_commit" >expect &&
48 git show-ref -s --verify refs/$ref >actual &&
49 test_cmp expect actual ||
56 mk_test_with_hooks() {
64 cat >pre-receive <<-'EOF' &&
66 cat - >>pre-receive.actual
69 cat >update <<-'EOF' &&
71 printf "%s %s %s\n" "$@" >>update.actual
74 cat >post-receive <<-'EOF' &&
76 cat - >>post-receive.actual
79 cat >post-update <<-'EOF' &&
83 printf "%s\n" "$ref" >>post-update.actual
87 chmod +x pre-receive update post-receive post-update
96 check_push_result () {
98 BUG "check_push_result requires at least 3 parameters"
109 git show-ref -s --verify refs/$ref >actual &&
110 test_cmp expect actual ||
117 test_expect_success setup '
122 git commit -a -m repo &&
123 the_first_commit=$(git show-ref -s --verify refs/heads/master) &&
128 git commit -a -m second &&
129 the_commit=$(git show-ref -s --verify refs/heads/master)
133 test_expect_success 'fetch without wildcard' '
137 git fetch .. refs/heads/master:refs/remotes/origin/master &&
139 echo "$the_commit commit refs/remotes/origin/master" >expect &&
140 git for-each-ref refs/remotes/origin >actual &&
141 test_cmp expect actual
145 test_expect_success 'fetch with wildcard' '
149 git config remote.up.url .. &&
150 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
153 echo "$the_commit commit refs/remotes/origin/master" >expect &&
154 git for-each-ref refs/remotes/origin >actual &&
155 test_cmp expect actual
159 test_expect_success 'fetch with insteadOf' '
164 git config "url.$TRASH.insteadOf" trash/ &&
165 git config remote.up.url trash/. &&
166 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
169 echo "$the_commit commit refs/remotes/origin/master" >expect &&
170 git for-each-ref refs/remotes/origin >actual &&
171 test_cmp expect actual
175 test_expect_success 'fetch with pushInsteadOf (should not rewrite)' '
180 git config "url.trash/.pushInsteadOf" "$TRASH" &&
181 git config remote.up.url "$TRASH." &&
182 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
185 echo "$the_commit commit refs/remotes/origin/master" >expect &&
186 git for-each-ref refs/remotes/origin >actual &&
187 test_cmp expect actual
191 test_expect_success 'push without wildcard' '
194 git push testrepo refs/heads/master:refs/remotes/origin/master &&
197 echo "$the_commit commit refs/remotes/origin/master" >expect &&
198 git for-each-ref refs/remotes/origin >actual &&
199 test_cmp expect actual
203 test_expect_success 'push with wildcard' '
206 git push testrepo "refs/heads/*:refs/remotes/origin/*" &&
209 echo "$the_commit commit refs/remotes/origin/master" >expect &&
210 git for-each-ref refs/remotes/origin >actual &&
211 test_cmp expect actual
215 test_expect_success 'push with insteadOf' '
218 test_config "url.$TRASH.insteadOf" trash/ &&
219 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
222 echo "$the_commit commit refs/remotes/origin/master" >expect &&
223 git for-each-ref refs/remotes/origin >actual &&
224 test_cmp expect actual
228 test_expect_success 'push with pushInsteadOf' '
231 test_config "url.$TRASH.pushInsteadOf" trash/ &&
232 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
235 echo "$the_commit commit refs/remotes/origin/master" >expect &&
236 git for-each-ref refs/remotes/origin >actual &&
237 test_cmp expect actual
241 test_expect_success 'push with pushInsteadOf and explicit pushurl (pushInsteadOf should not rewrite)' '
243 test_config "url.trash2/.pushInsteadOf" testrepo/ &&
244 test_config "url.trash3/.pushInsteadOf" trash/wrong &&
245 test_config remote.r.url trash/wrong &&
246 test_config remote.r.pushurl "testrepo/" &&
247 git push r refs/heads/master:refs/remotes/origin/master &&
250 echo "$the_commit commit refs/remotes/origin/master" >expect &&
251 git for-each-ref refs/remotes/origin >actual &&
252 test_cmp expect actual
256 test_expect_success 'push with matching heads' '
258 mk_test testrepo heads/master &&
259 git push testrepo : &&
260 check_push_result testrepo $the_commit heads/master
264 test_expect_success 'push with matching heads on the command line' '
266 mk_test testrepo heads/master &&
267 git push testrepo : &&
268 check_push_result testrepo $the_commit heads/master
272 test_expect_success 'failed (non-fast-forward) push with matching heads' '
274 mk_test testrepo heads/master &&
275 git push testrepo : &&
276 git commit --amend -massaged &&
277 test_must_fail git push testrepo &&
278 check_push_result testrepo $the_commit heads/master &&
279 git reset --hard $the_commit
283 test_expect_success 'push --force with matching heads' '
285 mk_test testrepo heads/master &&
286 git push testrepo : &&
287 git commit --amend -massaged &&
288 git push --force testrepo : &&
289 ! check_push_result testrepo $the_commit heads/master &&
290 git reset --hard $the_commit
294 test_expect_success 'push with matching heads and forced update' '
296 mk_test testrepo heads/master &&
297 git push testrepo : &&
298 git commit --amend -massaged &&
299 git push testrepo +: &&
300 ! check_push_result testrepo $the_commit heads/master &&
301 git reset --hard $the_commit
305 test_expect_success 'push with no ambiguity (1)' '
307 mk_test testrepo heads/master &&
308 git push testrepo master:master &&
309 check_push_result testrepo $the_commit heads/master
313 test_expect_success 'push with no ambiguity (2)' '
315 mk_test testrepo remotes/origin/master &&
316 git push testrepo master:origin/master &&
317 check_push_result testrepo $the_commit remotes/origin/master
321 test_expect_success 'push with colon-less refspec, no ambiguity' '
323 mk_test testrepo heads/master heads/t/master &&
324 git branch -f t/master master &&
325 git push testrepo master &&
326 check_push_result testrepo $the_commit heads/master &&
327 check_push_result testrepo $the_first_commit heads/t/master
331 test_expect_success 'push with weak ambiguity (1)' '
333 mk_test testrepo heads/master remotes/origin/master &&
334 git push testrepo master:master &&
335 check_push_result testrepo $the_commit heads/master &&
336 check_push_result testrepo $the_first_commit remotes/origin/master
340 test_expect_success 'push with weak ambiguity (2)' '
342 mk_test testrepo heads/master remotes/origin/master remotes/another/master &&
343 git push testrepo master:master &&
344 check_push_result testrepo $the_commit heads/master &&
345 check_push_result testrepo $the_first_commit remotes/origin/master remotes/another/master
349 test_expect_success 'push with ambiguity' '
351 mk_test testrepo heads/frotz tags/frotz &&
352 test_must_fail git push testrepo master:frotz &&
353 check_push_result testrepo $the_first_commit heads/frotz tags/frotz
357 test_expect_success 'push with colon-less refspec (1)' '
359 mk_test testrepo heads/frotz tags/frotz &&
360 git branch -f frotz master &&
361 git push testrepo frotz &&
362 check_push_result testrepo $the_commit heads/frotz &&
363 check_push_result testrepo $the_first_commit tags/frotz
367 test_expect_success 'push with colon-less refspec (2)' '
369 mk_test testrepo heads/frotz tags/frotz &&
370 if git show-ref --verify -q refs/heads/frotz
375 git push -f testrepo frotz &&
376 check_push_result testrepo $the_commit tags/frotz &&
377 check_push_result testrepo $the_first_commit heads/frotz
381 test_expect_success 'push with colon-less refspec (3)' '
384 if git show-ref --verify -q refs/tags/frotz
388 git branch -f frotz master &&
389 git push testrepo frotz &&
390 check_push_result testrepo $the_commit heads/frotz &&
391 test 1 = $( cd testrepo && git show-ref | wc -l )
394 test_expect_success 'push with colon-less refspec (4)' '
397 if git show-ref --verify -q refs/heads/frotz
402 git push testrepo frotz &&
403 check_push_result testrepo $the_commit tags/frotz &&
404 test 1 = $( cd testrepo && git show-ref | wc -l )
408 test_expect_success 'push head with non-existent, incomplete dest' '
411 git push testrepo master:branch &&
412 check_push_result testrepo $the_commit heads/branch
416 test_expect_success 'push tag with non-existent, incomplete dest' '
420 git push testrepo v1.0:tag &&
421 check_push_result testrepo $the_commit tags/tag
425 test_expect_success 'push sha1 with non-existent, incomplete dest' '
428 test_must_fail git push testrepo $(git rev-parse master):foo
432 test_expect_success 'push ref expression with non-existent, incomplete dest' '
435 test_must_fail git push testrepo master^:branch
439 test_expect_success 'push with HEAD' '
441 mk_test testrepo heads/master &&
442 git checkout master &&
443 git push testrepo HEAD &&
444 check_push_result testrepo $the_commit heads/master
448 test_expect_success 'push with HEAD nonexisting at remote' '
450 mk_test testrepo heads/master &&
451 git checkout -b local master &&
452 git push testrepo HEAD &&
453 check_push_result testrepo $the_commit heads/local
456 test_expect_success 'push with +HEAD' '
458 mk_test testrepo heads/master &&
459 git checkout master &&
460 git branch -D local &&
461 git checkout -b local &&
462 git push testrepo master local &&
463 check_push_result testrepo $the_commit heads/master &&
464 check_push_result testrepo $the_commit heads/local &&
466 # Without force rewinding should fail
467 git reset --hard HEAD^ &&
468 test_must_fail git push testrepo HEAD &&
469 check_push_result testrepo $the_commit heads/local &&
471 # With force rewinding should succeed
472 git push testrepo +HEAD &&
473 check_push_result testrepo $the_first_commit heads/local
477 test_expect_success 'push HEAD with non-existent, incomplete dest' '
480 git checkout master &&
481 git push testrepo HEAD:branch &&
482 check_push_result testrepo $the_commit heads/branch
486 test_expect_success 'push with config remote.*.push = HEAD' '
488 mk_test testrepo heads/local &&
489 git checkout master &&
490 git branch -f local $the_commit &&
493 git checkout local &&
494 git reset --hard $the_first_commit
496 test_config remote.there.url testrepo &&
497 test_config remote.there.push HEAD &&
498 test_config branch.master.remote there &&
500 check_push_result testrepo $the_commit heads/master &&
501 check_push_result testrepo $the_first_commit heads/local
504 test_expect_success 'push with remote.pushdefault' '
505 mk_test up_repo heads/master &&
506 mk_test down_repo heads/master &&
507 test_config remote.up.url up_repo &&
508 test_config remote.down.url down_repo &&
509 test_config branch.master.remote up &&
510 test_config remote.pushdefault down &&
511 test_config push.default matching &&
513 check_push_result up_repo $the_first_commit heads/master &&
514 check_push_result down_repo $the_commit heads/master
517 test_expect_success 'push with config remote.*.pushurl' '
519 mk_test testrepo heads/master &&
520 git checkout master &&
521 test_config remote.there.url test2repo &&
522 test_config remote.there.pushurl testrepo &&
524 check_push_result testrepo $the_commit heads/master
527 test_expect_success 'push with config branch.*.pushremote' '
528 mk_test up_repo heads/master &&
529 mk_test side_repo heads/master &&
530 mk_test down_repo heads/master &&
531 test_config remote.up.url up_repo &&
532 test_config remote.pushdefault side_repo &&
533 test_config remote.down.url down_repo &&
534 test_config branch.master.remote up &&
535 test_config branch.master.pushremote down &&
536 test_config push.default matching &&
538 check_push_result up_repo $the_first_commit heads/master &&
539 check_push_result side_repo $the_first_commit heads/master &&
540 check_push_result down_repo $the_commit heads/master
543 test_expect_success 'branch.*.pushremote config order is irrelevant' '
544 mk_test one_repo heads/master &&
545 mk_test two_repo heads/master &&
546 test_config remote.one.url one_repo &&
547 test_config remote.two.url two_repo &&
548 test_config branch.master.pushremote two_repo &&
549 test_config remote.pushdefault one_repo &&
550 test_config push.default matching &&
552 check_push_result one_repo $the_first_commit heads/master &&
553 check_push_result two_repo $the_commit heads/master
556 test_expect_success 'push with dry-run' '
558 mk_test testrepo heads/master &&
559 old_commit=$(git -C testrepo show-ref -s --verify refs/heads/master) &&
560 git push --dry-run testrepo : &&
561 check_push_result testrepo $old_commit heads/master
564 test_expect_success 'push updates local refs' '
566 mk_test testrepo heads/master &&
567 mk_child testrepo child &&
570 git pull .. master &&
572 test $(git rev-parse master) = \
573 $(git rev-parse remotes/origin/master)
578 test_expect_success 'push updates up-to-date local refs' '
580 mk_test testrepo heads/master &&
581 mk_child testrepo child1 &&
582 mk_child testrepo child2 &&
583 (cd child1 && git pull .. master && git push) &&
586 git pull ../child1 master &&
588 test $(git rev-parse master) = \
589 $(git rev-parse remotes/origin/master)
594 test_expect_success 'push preserves up-to-date packed refs' '
596 mk_test testrepo heads/master &&
597 mk_child testrepo child &&
601 ! test -f .git/refs/remotes/origin/master
606 test_expect_success 'push does not update local refs on failure' '
608 mk_test testrepo heads/master &&
609 mk_child testrepo child &&
610 mkdir testrepo/.git/hooks &&
611 echo "#!/no/frobnication/today" >testrepo/.git/hooks/pre-receive &&
612 chmod +x testrepo/.git/hooks/pre-receive &&
615 git pull .. master &&
616 test_must_fail git push &&
617 test $(git rev-parse master) != \
618 $(git rev-parse remotes/origin/master)
623 test_expect_success 'allow deleting an invalid remote ref' '
625 mk_test testrepo heads/master &&
626 rm -f testrepo/.git/objects/??/* &&
627 git push testrepo :refs/heads/master &&
628 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
632 test_expect_success 'pushing valid refs triggers post-receive and post-update hooks' '
633 mk_test_with_hooks testrepo heads/master heads/next &&
634 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
635 newmaster=$(git show-ref -s --verify refs/heads/master) &&
636 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
638 git push testrepo refs/heads/master:refs/heads/master :refs/heads/next &&
641 cat >pre-receive.expect <<-EOF &&
642 $orgmaster $newmaster refs/heads/master
643 $orgnext $newnext refs/heads/next
646 cat >update.expect <<-EOF &&
647 refs/heads/master $orgmaster $newmaster
648 refs/heads/next $orgnext $newnext
651 cat >post-receive.expect <<-EOF &&
652 $orgmaster $newmaster refs/heads/master
653 $orgnext $newnext refs/heads/next
656 cat >post-update.expect <<-EOF &&
661 test_cmp pre-receive.expect pre-receive.actual &&
662 test_cmp update.expect update.actual &&
663 test_cmp post-receive.expect post-receive.actual &&
664 test_cmp post-update.expect post-update.actual
668 test_expect_success 'deleting dangling ref triggers hooks with correct args' '
669 mk_test_with_hooks testrepo heads/master &&
670 rm -f testrepo/.git/objects/??/* &&
671 git push testrepo :refs/heads/master &&
674 cat >pre-receive.expect <<-EOF &&
675 $ZERO_OID $ZERO_OID refs/heads/master
678 cat >update.expect <<-EOF &&
679 refs/heads/master $ZERO_OID $ZERO_OID
682 cat >post-receive.expect <<-EOF &&
683 $ZERO_OID $ZERO_OID refs/heads/master
686 cat >post-update.expect <<-EOF &&
690 test_cmp pre-receive.expect pre-receive.actual &&
691 test_cmp update.expect update.actual &&
692 test_cmp post-receive.expect post-receive.actual &&
693 test_cmp post-update.expect post-update.actual
697 test_expect_success 'deletion of a non-existent ref is not fed to post-receive and post-update hooks' '
698 mk_test_with_hooks testrepo heads/master &&
699 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
700 newmaster=$(git show-ref -s --verify refs/heads/master) &&
701 git push testrepo master :refs/heads/nonexistent &&
704 cat >pre-receive.expect <<-EOF &&
705 $orgmaster $newmaster refs/heads/master
706 $ZERO_OID $ZERO_OID refs/heads/nonexistent
709 cat >update.expect <<-EOF &&
710 refs/heads/master $orgmaster $newmaster
711 refs/heads/nonexistent $ZERO_OID $ZERO_OID
714 cat >post-receive.expect <<-EOF &&
715 $orgmaster $newmaster refs/heads/master
718 cat >post-update.expect <<-EOF &&
722 test_cmp pre-receive.expect pre-receive.actual &&
723 test_cmp update.expect update.actual &&
724 test_cmp post-receive.expect post-receive.actual &&
725 test_cmp post-update.expect post-update.actual
729 test_expect_success 'deletion of a non-existent ref alone does trigger post-receive and post-update hooks' '
730 mk_test_with_hooks testrepo heads/master &&
731 git push testrepo :refs/heads/nonexistent &&
734 cat >pre-receive.expect <<-EOF &&
735 $ZERO_OID $ZERO_OID refs/heads/nonexistent
738 cat >update.expect <<-EOF &&
739 refs/heads/nonexistent $ZERO_OID $ZERO_OID
742 test_cmp pre-receive.expect pre-receive.actual &&
743 test_cmp update.expect update.actual &&
744 test_path_is_missing post-receive.actual &&
745 test_path_is_missing post-update.actual
749 test_expect_success 'mixed ref updates, deletes, invalid deletes trigger hooks with correct input' '
750 mk_test_with_hooks testrepo heads/master heads/next heads/seen &&
751 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
752 newmaster=$(git show-ref -s --verify refs/heads/master) &&
753 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
755 orgseen=$(cd testrepo && git show-ref -s --verify refs/heads/seen) &&
756 newseen=$(git show-ref -s --verify refs/heads/master) &&
757 git push testrepo refs/heads/master:refs/heads/master \
758 refs/heads/master:refs/heads/seen :refs/heads/next \
759 :refs/heads/nonexistent &&
762 cat >pre-receive.expect <<-EOF &&
763 $orgmaster $newmaster refs/heads/master
764 $orgnext $newnext refs/heads/next
765 $orgseen $newseen refs/heads/seen
766 $ZERO_OID $ZERO_OID refs/heads/nonexistent
769 cat >update.expect <<-EOF &&
770 refs/heads/master $orgmaster $newmaster
771 refs/heads/next $orgnext $newnext
772 refs/heads/seen $orgseen $newseen
773 refs/heads/nonexistent $ZERO_OID $ZERO_OID
776 cat >post-receive.expect <<-EOF &&
777 $orgmaster $newmaster refs/heads/master
778 $orgnext $newnext refs/heads/next
779 $orgseen $newseen refs/heads/seen
782 cat >post-update.expect <<-EOF &&
788 test_cmp pre-receive.expect pre-receive.actual &&
789 test_cmp update.expect update.actual &&
790 test_cmp post-receive.expect post-receive.actual &&
791 test_cmp post-update.expect post-update.actual
795 test_expect_success 'allow deleting a ref using --delete' '
796 mk_test testrepo heads/master &&
797 (cd testrepo && git config receive.denyDeleteCurrent warn) &&
798 git push testrepo --delete master &&
799 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
802 test_expect_success 'allow deleting a tag using --delete' '
803 mk_test testrepo heads/master &&
804 git tag -a -m dummy_message deltag heads/master &&
805 git push testrepo --tags &&
806 (cd testrepo && git rev-parse --verify -q refs/tags/deltag) &&
807 git push testrepo --delete tag deltag &&
808 (cd testrepo && test_must_fail git rev-parse --verify refs/tags/deltag)
811 test_expect_success 'push --delete without args aborts' '
812 mk_test testrepo heads/master &&
813 test_must_fail git push testrepo --delete
816 test_expect_success 'push --delete refuses src:dest refspecs' '
817 mk_test testrepo heads/master &&
818 test_must_fail git push testrepo --delete master:foo
821 test_expect_success 'push --delete refuses empty string' '
822 mk_test testrepo heads/master &&
823 test_must_fail git push testrepo --delete ""
826 test_expect_success 'warn on push to HEAD of non-bare repository' '
827 mk_test testrepo heads/master &&
830 git checkout master &&
831 git config receive.denyCurrentBranch warn
833 git push testrepo master 2>stderr &&
834 grep "warning: updating the current branch" stderr
837 test_expect_success 'deny push to HEAD of non-bare repository' '
838 mk_test testrepo heads/master &&
841 git checkout master &&
842 git config receive.denyCurrentBranch true
844 test_must_fail git push testrepo master
847 test_expect_success 'allow push to HEAD of bare repository (bare)' '
848 mk_test testrepo heads/master &&
851 git checkout master &&
852 git config receive.denyCurrentBranch true &&
853 git config core.bare true
855 git push testrepo master 2>stderr &&
856 ! grep "warning: updating the current branch" stderr
859 test_expect_success 'allow push to HEAD of non-bare repository (config)' '
860 mk_test testrepo heads/master &&
863 git checkout master &&
864 git config receive.denyCurrentBranch false
866 git push testrepo master 2>stderr &&
867 ! grep "warning: updating the current branch" stderr
870 test_expect_success 'fetch with branches' '
872 git branch second $the_first_commit &&
873 git checkout second &&
874 echo ".." > testrepo/.git/branches/branch1 &&
878 echo "$the_commit commit refs/heads/branch1" >expect &&
879 git for-each-ref refs/heads >actual &&
880 test_cmp expect actual
885 test_expect_success 'fetch with branches containing #' '
887 echo "..#second" > testrepo/.git/branches/branch2 &&
891 echo "$the_first_commit commit refs/heads/branch2" >expect &&
892 git for-each-ref refs/heads >actual &&
893 test_cmp expect actual
898 test_expect_success 'push with branches' '
900 git checkout second &&
901 echo "testrepo" > .git/branches/branch1 &&
905 echo "$the_first_commit commit refs/heads/master" >expect &&
906 git for-each-ref refs/heads >actual &&
907 test_cmp expect actual
911 test_expect_success 'push with branches containing #' '
913 echo "testrepo#branch3" > .git/branches/branch2 &&
917 echo "$the_first_commit commit refs/heads/branch3" >expect &&
918 git for-each-ref refs/heads >actual &&
919 test_cmp expect actual
924 test_expect_success 'push into aliased refs (consistent)' '
925 mk_test testrepo heads/master &&
926 mk_child testrepo child1 &&
927 mk_child testrepo child2 &&
931 git symbolic-ref refs/heads/bar refs/heads/foo &&
932 git config receive.denyCurrentBranch false
939 git commit -a -m child2 &&
942 git push ../child1 foo bar
946 test_expect_success 'push into aliased refs (inconsistent)' '
947 mk_test testrepo heads/master &&
948 mk_child testrepo child1 &&
949 mk_child testrepo child2 &&
953 git symbolic-ref refs/heads/bar refs/heads/foo &&
954 git config receive.denyCurrentBranch false
961 git commit -a -m child2 &&
966 git commit -a -m child2 &&
968 test_must_fail git push ../child1 foo bar 2>stderr &&
969 grep "refusing inconsistent update" stderr
973 test_force_push_tag () {
974 tag_type_description=$1
977 test_expect_success "force pushing required to update $tag_type_description" "
978 mk_test testrepo heads/master &&
979 mk_child testrepo child1 &&
980 mk_child testrepo child2 &&
984 git push ../child2 testTag &&
987 git commit -m 'file1' &&
988 git tag $tag_args testTag &&
989 test_must_fail git push ../child2 testTag &&
990 git push --force ../child2 testTag &&
991 git tag $tag_args testTag HEAD~ &&
992 test_must_fail git push ../child2 testTag &&
993 git push --force ../child2 testTag &&
995 # Clobbering without + in refspec needs --force
996 git tag -f testTag &&
997 test_must_fail git push ../child2 'refs/tags/*:refs/tags/*' &&
998 git push --force ../child2 'refs/tags/*:refs/tags/*' &&
1000 # Clobbering with + in refspec does not need --force
1001 git tag -f testTag HEAD~ &&
1002 git push ../child2 '+refs/tags/*:refs/tags/*' &&
1004 # Clobbering with --no-force still obeys + in refspec
1005 git tag -f testTag &&
1006 git push --no-force ../child2 '+refs/tags/*:refs/tags/*' &&
1008 # Clobbering with/without --force and 'tag <name>' format
1009 git tag -f testTag HEAD~ &&
1010 test_must_fail git push ../child2 tag testTag &&
1011 git push --force ../child2 tag testTag
1016 test_force_push_tag "lightweight tag" "-f"
1017 test_force_push_tag "annotated tag" "-f -a -m'tag message'"
1019 test_force_fetch_tag () {
1020 tag_type_description=$1
1023 test_expect_success "fetch will not clobber an existing $tag_type_description without --force" "
1024 mk_test testrepo heads/master &&
1025 mk_child testrepo child1 &&
1026 mk_child testrepo child2 &&
1030 git -C ../child1 fetch origin tag testTag &&
1033 git commit -m 'file1' &&
1034 git tag $tag_args testTag &&
1035 test_must_fail git -C ../child1 fetch origin tag testTag &&
1036 git -C ../child1 fetch origin '+refs/tags/*:refs/tags/*'
1041 test_force_fetch_tag "lightweight tag" "-f"
1042 test_force_fetch_tag "annotated tag" "-f -a -m'tag message'"
1044 test_expect_success 'push --porcelain' '
1045 mk_empty testrepo &&
1046 echo >.git/foo "To testrepo" &&
1047 echo >>.git/foo "* refs/heads/master:refs/remotes/origin/master [new reference]" &&
1048 echo >>.git/foo "Done" &&
1049 git push >.git/bar --porcelain testrepo refs/heads/master:refs/remotes/origin/master &&
1052 echo "$the_commit commit refs/remotes/origin/master" >expect &&
1053 git for-each-ref refs/remotes/origin >actual &&
1054 test_cmp expect actual
1056 test_cmp .git/foo .git/bar
1059 test_expect_success 'push --porcelain bad url' '
1060 mk_empty testrepo &&
1061 test_must_fail git push >.git/bar --porcelain asdfasdfasd refs/heads/master:refs/remotes/origin/master &&
1062 ! grep -q Done .git/bar
1065 test_expect_success 'push --porcelain rejected' '
1066 mk_empty testrepo &&
1067 git push testrepo refs/heads/master:refs/remotes/origin/master &&
1069 git reset --hard origin/master^ &&
1070 git config receive.denyCurrentBranch true) &&
1072 echo >.git/foo "To testrepo" &&
1073 echo >>.git/foo "! refs/heads/master:refs/heads/master [remote rejected] (branch is currently checked out)" &&
1074 echo >>.git/foo "Done" &&
1076 test_must_fail git push >.git/bar --porcelain testrepo refs/heads/master:refs/heads/master &&
1077 test_cmp .git/foo .git/bar
1080 test_expect_success 'push --porcelain --dry-run rejected' '
1081 mk_empty testrepo &&
1082 git push testrepo refs/heads/master:refs/remotes/origin/master &&
1084 git reset --hard origin/master &&
1085 git config receive.denyCurrentBranch true) &&
1087 echo >.git/foo "To testrepo" &&
1088 echo >>.git/foo "! refs/heads/master^:refs/heads/master [rejected] (non-fast-forward)" &&
1089 echo >>.git/foo "Done" &&
1091 test_must_fail git push >.git/bar --porcelain --dry-run testrepo refs/heads/master^:refs/heads/master &&
1092 test_cmp .git/foo .git/bar
1095 test_expect_success 'push --prune' '
1096 mk_test testrepo heads/master heads/second heads/foo heads/bar &&
1097 git push --prune testrepo : &&
1098 check_push_result testrepo $the_commit heads/master &&
1099 check_push_result testrepo $the_first_commit heads/second &&
1100 ! check_push_result testrepo $the_first_commit heads/foo heads/bar
1103 test_expect_success 'push --prune refspec' '
1104 mk_test testrepo tmp/master tmp/second tmp/foo tmp/bar &&
1105 git push --prune testrepo "refs/heads/*:refs/tmp/*" &&
1106 check_push_result testrepo $the_commit tmp/master &&
1107 check_push_result testrepo $the_first_commit tmp/second &&
1108 ! check_push_result testrepo $the_first_commit tmp/foo tmp/bar
1111 for configsection in transfer receive
1113 test_expect_success "push to update a ref hidden by $configsection.hiderefs" '
1114 mk_test testrepo heads/master hidden/one hidden/two hidden/three &&
1117 git config $configsection.hiderefs refs/hidden
1120 # push to unhidden ref succeeds normally
1121 git push testrepo master:refs/heads/master &&
1122 check_push_result testrepo $the_commit heads/master &&
1124 # push to update a hidden ref should fail
1125 test_must_fail git push testrepo master:refs/hidden/one &&
1126 check_push_result testrepo $the_first_commit hidden/one &&
1128 # push to delete a hidden ref should fail
1129 test_must_fail git push testrepo :refs/hidden/two &&
1130 check_push_result testrepo $the_first_commit hidden/two &&
1132 # idempotent push to update a hidden ref should fail
1133 test_must_fail git push testrepo $the_first_commit:refs/hidden/three &&
1134 check_push_result testrepo $the_first_commit hidden/three
1138 test_expect_success 'fetch exact SHA1' '
1139 mk_test testrepo heads/master hidden/one &&
1140 git push testrepo master:refs/hidden/one &&
1143 git config transfer.hiderefs refs/hidden
1145 check_push_result testrepo $the_commit hidden/one &&
1147 mk_child testrepo child &&
1151 # make sure $the_commit does not exist here
1154 test_must_fail git cat-file -t $the_commit &&
1156 # Some protocol versions (e.g. 2) support fetching
1157 # unadvertised objects, so restrict this test to v0.
1159 # fetching the hidden object should fail by default
1160 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1161 git fetch -v ../testrepo $the_commit:refs/heads/copy 2>err &&
1162 test_i18ngrep "Server does not allow request for unadvertised object" err &&
1163 test_must_fail git rev-parse --verify refs/heads/copy &&
1165 # the server side can allow it to succeed
1168 git config uploadpack.allowtipsha1inwant true
1171 git fetch -v ../testrepo $the_commit:refs/heads/copy master:refs/heads/extra &&
1172 cat >expect <<-EOF &&
1177 git rev-parse --verify refs/heads/copy &&
1178 git rev-parse --verify refs/heads/extra
1180 test_cmp expect actual
1184 test_expect_success 'fetch exact SHA1 in protocol v2' '
1185 mk_test testrepo heads/master hidden/one &&
1186 git push testrepo master:refs/hidden/one &&
1187 git -C testrepo config transfer.hiderefs refs/hidden &&
1188 check_push_result testrepo $the_commit hidden/one &&
1190 mk_child testrepo child &&
1191 git -C child config protocol.version 2 &&
1193 # make sure $the_commit does not exist here
1194 git -C child repack -a -d &&
1195 git -C child prune &&
1196 test_must_fail git -C child cat-file -t $the_commit &&
1198 # fetching the hidden object succeeds by default
1199 # NEEDSWORK: should this match the v0 behavior instead?
1200 git -C child fetch -v ../testrepo $the_commit:refs/heads/copy
1203 for configallowtipsha1inwant in true false
1205 test_expect_success "shallow fetch reachable SHA1 (but not a ref), allowtipsha1inwant=$configallowtipsha1inwant" '
1206 mk_empty testrepo &&
1209 git config uploadpack.allowtipsha1inwant $configallowtipsha1inwant &&
1210 git commit --allow-empty -m foo &&
1211 git commit --allow-empty -m bar
1213 SHA1=$(git --git-dir=testrepo/.git rev-parse HEAD^) &&
1217 # Some protocol versions (e.g. 2) support fetching
1218 # unadvertised objects, so restrict this test to v0.
1219 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1220 git fetch --depth=1 ../testrepo/.git $SHA1 &&
1221 git --git-dir=../testrepo/.git config uploadpack.allowreachablesha1inwant true &&
1222 git fetch --depth=1 ../testrepo/.git $SHA1 &&
1223 git cat-file commit $SHA1
1227 test_expect_success "deny fetch unreachable SHA1, allowtipsha1inwant=$configallowtipsha1inwant" '
1228 mk_empty testrepo &&
1231 git config uploadpack.allowtipsha1inwant $configallowtipsha1inwant &&
1232 git commit --allow-empty -m foo &&
1233 git commit --allow-empty -m bar &&
1234 git commit --allow-empty -m xyz
1236 SHA1_1=$(git --git-dir=testrepo/.git rev-parse HEAD^^) &&
1237 SHA1_2=$(git --git-dir=testrepo/.git rev-parse HEAD^) &&
1238 SHA1_3=$(git --git-dir=testrepo/.git rev-parse HEAD) &&
1241 git reset --hard $SHA1_2 &&
1242 git cat-file commit $SHA1_1 &&
1243 git cat-file commit $SHA1_3
1248 # Some protocol versions (e.g. 2) support fetching
1249 # unadvertised objects, so restrict this test to v0.
1250 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1251 git fetch ../testrepo/.git $SHA1_3 &&
1252 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1253 git fetch ../testrepo/.git $SHA1_1 &&
1254 git --git-dir=../testrepo/.git config uploadpack.allowreachablesha1inwant true &&
1255 git fetch ../testrepo/.git $SHA1_1 &&
1256 git cat-file commit $SHA1_1 &&
1257 test_must_fail git cat-file commit $SHA1_2 &&
1258 git fetch ../testrepo/.git $SHA1_2 &&
1259 git cat-file commit $SHA1_2 &&
1260 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1261 git fetch ../testrepo/.git $SHA1_3 2>err &&
1262 test_i18ngrep "remote error:.*not our ref.*$SHA1_3\$" err
1267 test_expect_success 'fetch follows tags by default' '
1268 mk_test testrepo heads/master &&
1273 git pull ../testrepo master &&
1274 git tag -m "annotated" tag &&
1275 git for-each-ref >tmp1 &&
1278 sed -n "s|refs/heads/master$|refs/remotes/origin/master|p" tmp1
1280 sort -k 3 >../expect
1285 git remote add origin ../src &&
1286 git config branch.master.remote origin &&
1287 git config branch.master.merge refs/heads/master &&
1289 git for-each-ref >../actual
1291 test_cmp expect actual
1294 test_expect_success 'peeled advertisements are not considered ref tips' '
1295 mk_empty testrepo &&
1296 git -C testrepo commit --allow-empty -m one &&
1297 git -C testrepo commit --allow-empty -m two &&
1298 git -C testrepo tag -m foo mytag HEAD^ &&
1299 oid=$(git -C testrepo rev-parse mytag^{commit}) &&
1300 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
1301 git fetch testrepo $oid 2>err &&
1302 test_i18ngrep "Server does not allow request for unadvertised object" err
1305 test_expect_success 'pushing a specific ref applies remote.$name.push as refmap' '
1306 mk_test testrepo heads/master &&
1309 git init --bare dst &&
1312 git pull ../testrepo master &&
1314 git config remote.dst.url ../dst &&
1315 git config remote.dst.push "+refs/heads/*:refs/remotes/src/*" &&
1316 git push dst master &&
1317 git show-ref refs/heads/master |
1318 sed -e "s|refs/heads/|refs/remotes/src/|" >../dst/expect
1322 test_must_fail git show-ref refs/heads/next &&
1323 test_must_fail git show-ref refs/heads/master &&
1324 git show-ref refs/remotes/src/master >actual
1326 test_cmp dst/expect dst/actual
1329 test_expect_success 'with no remote.$name.push, it is not used as refmap' '
1330 mk_test testrepo heads/master &&
1333 git init --bare dst &&
1336 git pull ../testrepo master &&
1338 git config remote.dst.url ../dst &&
1339 git config push.default matching &&
1340 git push dst master &&
1341 git show-ref refs/heads/master >../dst/expect
1345 test_must_fail git show-ref refs/heads/next &&
1346 git show-ref refs/heads/master >actual
1348 test_cmp dst/expect dst/actual
1351 test_expect_success 'with no remote.$name.push, upstream mapping is used' '
1352 mk_test testrepo heads/master &&
1355 git init --bare dst &&
1358 git pull ../testrepo master &&
1360 git config remote.dst.url ../dst &&
1361 git config remote.dst.fetch "+refs/heads/*:refs/remotes/dst/*" &&
1362 git config push.default upstream &&
1364 git config branch.master.merge refs/heads/trunk &&
1365 git config branch.master.remote dst &&
1367 git push dst master &&
1368 git show-ref refs/heads/master |
1369 sed -e "s|refs/heads/master|refs/heads/trunk|" >../dst/expect
1373 test_must_fail git show-ref refs/heads/master &&
1374 test_must_fail git show-ref refs/heads/next &&
1375 git show-ref refs/heads/trunk >actual
1377 test_cmp dst/expect dst/actual
1380 test_expect_success 'push does not follow tags by default' '
1381 mk_test testrepo heads/master &&
1384 git init --bare dst &&
1387 git pull ../testrepo master &&
1388 git tag -m "annotated" tag &&
1389 git checkout -b another &&
1390 git commit --allow-empty -m "future commit" &&
1391 git tag -m "future" future &&
1392 git checkout master &&
1393 git for-each-ref refs/heads/master >../expect &&
1394 git push ../dst master
1398 git for-each-ref >../actual
1400 test_cmp expect actual
1403 test_expect_success 'push --follow-tags only pushes relevant tags' '
1404 mk_test testrepo heads/master &&
1407 git init --bare dst &&
1410 git pull ../testrepo master &&
1411 git tag -m "annotated" tag &&
1412 git checkout -b another &&
1413 git commit --allow-empty -m "future commit" &&
1414 git tag -m "future" future &&
1415 git checkout master &&
1416 git for-each-ref refs/heads/master refs/tags/tag >../expect &&
1417 git push --follow-tags ../dst master
1421 git for-each-ref >../actual
1423 test_cmp expect actual
1426 test_expect_success 'push --no-thin must produce non-thin pack' '
1427 cat >>path1 <<\EOF &&
1428 keep base version of path1 big enough, compared to the new changes
1429 later, in order to pass size heuristics in
1430 builtin/pack-objects.c:try_delta()
1432 git commit -am initial &&
1434 git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1435 git push no-thin/.git refs/heads/master:refs/heads/foo &&
1436 echo modified >> path1 &&
1437 git commit -am modified &&
1439 rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
1440 git push --no-thin --receive-pack="$rcvpck" no-thin/.git refs/heads/master:refs/heads/foo
1443 test_expect_success 'pushing a tag pushes the tagged object' '
1445 blob=$(echo unreferenced | git hash-object -w --stdin) &&
1446 git tag -m foo tag-of-blob $blob &&
1447 git init --bare dst.git &&
1448 git push dst.git tag-of-blob &&
1449 # the receiving index-pack should have noticed
1450 # any problems, but we double check
1451 echo unreferenced >expect &&
1452 git --git-dir=dst.git cat-file blob tag-of-blob >actual &&
1453 test_cmp expect actual
1456 test_expect_success 'push into bare respects core.logallrefupdates' '
1458 git init --bare dst.git &&
1459 git -C dst.git config core.logallrefupdates true &&
1461 # double push to test both with and without
1462 # the actual pack transfer
1463 git push dst.git master:one &&
1464 echo "one@{0} push" >expect &&
1465 git -C dst.git log -g --format="%gd %gs" one >actual &&
1466 test_cmp expect actual &&
1468 git push dst.git master:two &&
1469 echo "two@{0} push" >expect &&
1470 git -C dst.git log -g --format="%gd %gs" two >actual &&
1471 test_cmp expect actual
1474 test_expect_success 'fetch into bare respects core.logallrefupdates' '
1476 git init --bare dst.git &&
1479 git config core.logallrefupdates true &&
1481 # as above, we double-fetch to test both
1482 # with and without pack transfer
1483 git fetch .. master:one &&
1484 echo "one@{0} fetch .. master:one: storing head" >expect &&
1485 git log -g --format="%gd %gs" one >actual &&
1486 test_cmp expect actual &&
1488 git fetch .. master:two &&
1489 echo "two@{0} fetch .. master:two: storing head" >expect &&
1490 git log -g --format="%gd %gs" two >actual &&
1491 test_cmp expect actual
1495 test_expect_success 'receive.denyCurrentBranch = updateInstead' '
1496 git push testrepo master &&
1500 git config receive.denyCurrentBranch updateInstead
1502 test_commit third path2 &&
1504 # Try pushing into a repository with pristine working tree
1505 git push testrepo master &&
1508 git update-index -q --refresh &&
1509 git diff-files --quiet -- &&
1510 git diff-index --quiet --cached HEAD -- &&
1511 test third = "$(cat path2)" &&
1512 test $(git -C .. rev-parse HEAD) = $(git rev-parse HEAD)
1515 # Try pushing into a repository with working tree needing a refresh
1518 git reset --hard HEAD^ &&
1519 test $(git -C .. rev-parse HEAD^) = $(git rev-parse HEAD) &&
1520 test-tool chmtime +100 path1
1522 git push testrepo master &&
1525 git update-index -q --refresh &&
1526 git diff-files --quiet -- &&
1527 git diff-index --quiet --cached HEAD -- &&
1528 test_cmp ../path1 path1 &&
1529 test third = "$(cat path2)" &&
1530 test $(git -C .. rev-parse HEAD) = $(git rev-parse HEAD)
1533 # Update what is to be pushed
1534 test_commit fourth path2 &&
1536 # Try pushing into a repository with a dirty working tree
1537 # (1) the working tree updated
1542 test_must_fail git push testrepo master &&
1545 test $(git -C .. rev-parse HEAD^) = $(git rev-parse HEAD) &&
1546 git diff --quiet --cached &&
1547 test changed = "$(cat path1)"
1550 # (2) the index updated
1553 echo changed >path1 &&
1556 test_must_fail git push testrepo master &&
1559 test $(git -C .. rev-parse HEAD^) = $(git rev-parse HEAD) &&
1561 test changed = "$(cat path1)"
1564 # Introduce a new file in the update
1565 test_commit fifth path3 &&
1567 # (3) the working tree has an untracked file that would interfere
1573 test_must_fail git push testrepo master &&
1576 test $(git -C .. rev-parse HEAD^^) = $(git rev-parse HEAD) &&
1578 git diff --quiet --cached &&
1579 test changed = "$(cat path3)"
1582 # (4) the target changes to what gets pushed but it still is a change
1586 echo fifth >path3 &&
1589 test_must_fail git push testrepo master &&
1592 test $(git -C .. rev-parse HEAD^^) = $(git rev-parse HEAD) &&
1594 test fifth = "$(cat path3)"
1597 # (5) push into void
1602 git config receive.denyCurrentBranch updateInstead
1604 git push void master &&
1607 test $(git -C .. rev-parse master) = $(git rev-parse HEAD) &&
1609 git diff --cached --quiet
1612 # (6) updateInstead intervened by fast-forward check
1613 test_must_fail git push void master^:master &&
1614 test $(git -C void rev-parse HEAD) = $(git rev-parse master) &&
1615 git -C void diff --quiet &&
1616 git -C void diff --cached --quiet
1619 test_expect_success 'updateInstead with push-to-checkout hook' '
1621 git init testrepo &&
1624 git pull .. master &&
1625 git reset --hard HEAD^^ &&
1627 git config receive.denyCurrentBranch updateInstead &&
1628 write_script .git/hooks/push-to-checkout <<-\EOF
1629 echo >&2 updating from $(git rev-parse HEAD)
1630 echo >&2 updating to "$1"
1632 git update-index -q --refresh &&
1633 git read-tree -u -m HEAD "$1" || {
1635 echo >&2 read-tree failed
1641 # Try pushing into a pristine
1642 git push testrepo master &&
1646 git diff HEAD --quiet &&
1647 test $(git -C .. rev-parse HEAD) = $(git rev-parse HEAD)
1650 # Try pushing into a repository with conflicting change
1653 git reset --hard initial &&
1654 echo conflicting >path2
1656 test_must_fail git push testrepo master &&
1659 test $(git rev-parse initial) = $(git rev-parse HEAD) &&
1660 test conflicting = "$(cat path2)" &&
1661 git diff-index --quiet --cached HEAD
1664 # Try pushing into a repository with unrelated change
1667 git reset --hard initial &&
1668 echo unrelated >path1 &&
1669 echo irrelevant >path5 &&
1672 git push testrepo master &&
1675 test "$(cat path1)" = unrelated &&
1676 test "$(cat path5)" = irrelevant &&
1677 test "$(git diff --name-only --cached HEAD)" = path5 &&
1678 test $(git -C .. rev-parse HEAD) = $(git rev-parse HEAD)
1686 git config receive.denyCurrentBranch updateInstead &&
1687 write_script .git/hooks/push-to-checkout <<-\EOF
1688 if git rev-parse --quiet --verify HEAD
1691 echo >&2 updating from $(git rev-parse HEAD)
1694 echo >&2 pushing into void
1696 echo >&2 updating to "$1"
1698 git update-index -q --refresh &&
1701 git read-tree -u -m HEAD "$1" ;;
1703 git read-tree -u -m "$1" ;;
1706 echo >&2 read-tree failed
1712 git push void master &&
1716 git diff --cached --quiet &&
1717 test $(git -C .. rev-parse HEAD) = $(git rev-parse HEAD)
1721 test_expect_success 'denyCurrentBranch and worktrees' '
1722 git worktree add new-wt &&
1723 git clone . cloned &&
1724 test_commit -C cloned first &&
1725 test_config receive.denyCurrentBranch refuse &&
1726 test_must_fail git -C cloned push origin HEAD:new-wt &&
1727 test_config receive.denyCurrentBranch updateInstead &&
1728 git -C cloned push origin HEAD:new-wt &&
1729 test_must_fail git -C cloned push --delete origin new-wt