3 test_description
='fetching and pushing, with or without wildcard'
15 git config receive.denyCurrentBranch warn
&&
16 mv .git
/hooks .git
/hooks-disabled
25 git push testrepo
$the_first_commit:refs
/$ref ||
{
26 echo "Oops, push refs/$ref failure"
33 r
=$
(git show-ref
-s --verify refs
/$ref) &&
34 test "z$r" = "z$the_first_commit" ||
{
35 echo "Oops, refs/$ref is wrong"
43 mk_test_with_hooks
() {
50 cat >pre-receive
<<-'EOF' &&
52 cat - >>pre-receive.actual
55 cat >update
<<-'EOF' &&
57 printf "%s %s %s\n" "$@" >>update.actual
60 cat >post-receive
<<-'EOF' &&
62 cat - >>post-receive.actual
65 cat >post-update
<<-'EOF' &&
69 printf "%s\n" "$ref" >>post-update.actual
73 chmod +x pre-receive update post-receive post-update
79 git clone testrepo
"$1"
82 check_push_result
() {
89 r
=$
(git show-ref
-s --verify refs
/$ref) &&
90 test "z$r" = "z$it" ||
{
91 echo "Oops, refs/$ref is wrong"
99 test_expect_success setup
'
104 git commit -a -m repo &&
105 the_first_commit=$(git show-ref -s --verify refs/heads/master) &&
110 git commit -a -m second &&
111 the_commit=$(git show-ref -s --verify refs/heads/master)
115 test_expect_success
'fetch without wildcard' '
119 git fetch .. refs/heads/master:refs/remotes/origin/master &&
121 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
122 test "z$r" = "z$the_commit" &&
124 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
128 test_expect_success
'fetch with wildcard' '
132 git config remote.up.url .. &&
133 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
136 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
137 test "z$r" = "z$the_commit" &&
139 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
143 test_expect_success
'fetch with insteadOf' '
148 git config "url.$TRASH.insteadOf" trash/ &&
149 git config remote.up.url trash/. &&
150 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
153 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
154 test "z$r" = "z$the_commit" &&
156 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
160 test_expect_success
'fetch with pushInsteadOf (should not rewrite)' '
165 git config "url.trash/.pushInsteadOf" "$TRASH" &&
166 git config remote.up.url "$TRASH." &&
167 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
170 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
171 test "z$r" = "z$the_commit" &&
173 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
177 test_expect_success
'push without wildcard' '
180 git push testrepo refs/heads/master:refs/remotes/origin/master &&
183 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
184 test "z$r" = "z$the_commit" &&
186 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
190 test_expect_success
'push with wildcard' '
193 git push testrepo "refs/heads/*:refs/remotes/origin/*" &&
196 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
197 test "z$r" = "z$the_commit" &&
199 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
203 test_expect_success
'push with insteadOf' '
206 git config "url.$TRASH.insteadOf" trash/ &&
207 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
210 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
211 test "z$r" = "z$the_commit" &&
213 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
217 test_expect_success
'push with pushInsteadOf' '
220 git config "url.$TRASH.pushInsteadOf" trash/ &&
221 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
224 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
225 test "z$r" = "z$the_commit" &&
227 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
231 test_expect_success
'push with pushInsteadOf and explicit pushurl (pushInsteadOf should not rewrite)' '
234 git config "url.trash2/.pushInsteadOf" trash/ &&
235 git config remote.r.url trash/wrong &&
236 git config remote.r.pushurl "$TRASH/testrepo" &&
237 git push r refs/heads/master:refs/remotes/origin/master &&
240 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
241 test "z$r" = "z$the_commit" &&
243 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
247 test_expect_success
'push with matching heads' '
249 mk_test heads/master &&
251 check_push_result $the_commit heads/master
255 test_expect_success
'push with matching heads on the command line' '
257 mk_test heads/master &&
258 git push testrepo : &&
259 check_push_result $the_commit heads/master
263 test_expect_success
'failed (non-fast-forward) push with matching heads' '
265 mk_test heads/master &&
266 git push testrepo : &&
267 git commit --amend -massaged &&
268 test_must_fail git push testrepo &&
269 check_push_result $the_commit heads/master &&
270 git reset --hard $the_commit
274 test_expect_success
'push --force with matching heads' '
276 mk_test heads/master &&
277 git push testrepo : &&
278 git commit --amend -massaged &&
279 git push --force testrepo &&
280 ! check_push_result $the_commit heads/master &&
281 git reset --hard $the_commit
285 test_expect_success
'push with matching heads and forced update' '
287 mk_test heads/master &&
288 git push testrepo : &&
289 git commit --amend -massaged &&
290 git push testrepo +: &&
291 ! check_push_result $the_commit heads/master &&
292 git reset --hard $the_commit
296 test_expect_success
'push with no ambiguity (1)' '
298 mk_test heads/master &&
299 git push testrepo master:master &&
300 check_push_result $the_commit heads/master
304 test_expect_success
'push with no ambiguity (2)' '
306 mk_test remotes/origin/master &&
307 git push testrepo master:origin/master &&
308 check_push_result $the_commit remotes/origin/master
312 test_expect_success
'push with colon-less refspec, no ambiguity' '
314 mk_test heads/master heads/t/master &&
315 git branch -f t/master master &&
316 git push testrepo master &&
317 check_push_result $the_commit heads/master &&
318 check_push_result $the_first_commit heads/t/master
322 test_expect_success
'push with weak ambiguity (1)' '
324 mk_test heads/master remotes/origin/master &&
325 git push testrepo master:master &&
326 check_push_result $the_commit heads/master &&
327 check_push_result $the_first_commit remotes/origin/master
331 test_expect_success
'push with weak ambiguity (2)' '
333 mk_test heads/master remotes/origin/master remotes/another/master &&
334 git push testrepo master:master &&
335 check_push_result $the_commit heads/master &&
336 check_push_result $the_first_commit remotes/origin/master remotes/another/master
340 test_expect_success
'push with ambiguity' '
342 mk_test heads/frotz tags/frotz &&
343 if git push testrepo master:frotz
345 echo "Oops, should have failed"
348 check_push_result $the_first_commit heads/frotz tags/frotz
353 test_expect_success
'push with colon-less refspec (1)' '
355 mk_test heads/frotz tags/frotz &&
356 git branch -f frotz master &&
357 git push testrepo frotz &&
358 check_push_result $the_commit heads/frotz &&
359 check_push_result $the_first_commit tags/frotz
363 test_expect_success
'push with colon-less refspec (2)' '
365 mk_test heads/frotz tags/frotz &&
366 if git show-ref --verify -q refs/heads/frotz
371 git push -f testrepo frotz &&
372 check_push_result $the_commit tags/frotz &&
373 check_push_result $the_first_commit heads/frotz
377 test_expect_success
'push with colon-less refspec (3)' '
380 if git show-ref --verify -q refs/tags/frotz
384 git branch -f frotz master &&
385 git push testrepo frotz &&
386 check_push_result $the_commit heads/frotz &&
387 test 1 = $( cd testrepo && git show-ref | wc -l )
390 test_expect_success
'push with colon-less refspec (4)' '
393 if git show-ref --verify -q refs/heads/frotz
398 git push testrepo frotz &&
399 check_push_result $the_commit tags/frotz &&
400 test 1 = $( cd testrepo && git show-ref | wc -l )
404 test_expect_success
'push head with non-existent, incomplete dest' '
407 git push testrepo master:branch &&
408 check_push_result $the_commit heads/branch
412 test_expect_success
'push tag with non-existent, incomplete dest' '
416 git push testrepo v1.0:tag &&
417 check_push_result $the_commit tags/tag
421 test_expect_success
'push sha1 with non-existent, incomplete dest' '
424 test_must_fail git push testrepo `git rev-parse master`:foo
428 test_expect_success
'push ref expression with non-existent, incomplete dest' '
431 test_must_fail git push testrepo master^:branch
435 test_expect_success
'push with HEAD' '
437 mk_test heads/master &&
438 git checkout master &&
439 git push testrepo HEAD &&
440 check_push_result $the_commit heads/master
444 test_expect_success
'push with HEAD nonexisting at remote' '
446 mk_test heads/master &&
447 git checkout -b local master &&
448 git push testrepo HEAD &&
449 check_push_result $the_commit heads/local
452 test_expect_success
'push with +HEAD' '
454 mk_test heads/master &&
455 git checkout master &&
456 git branch -D local &&
457 git checkout -b local &&
458 git push testrepo master local &&
459 check_push_result $the_commit heads/master &&
460 check_push_result $the_commit heads/local &&
462 # Without force rewinding should fail
463 git reset --hard HEAD^ &&
464 test_must_fail git push testrepo HEAD &&
465 check_push_result $the_commit heads/local &&
467 # With force rewinding should succeed
468 git push testrepo +HEAD &&
469 check_push_result $the_first_commit heads/local
473 test_expect_success
'push HEAD with non-existent, incomplete dest' '
476 git checkout master &&
477 git push testrepo HEAD:branch &&
478 check_push_result $the_commit heads/branch
482 test_expect_success
'push with config remote.*.push = HEAD' '
484 mk_test heads/local &&
485 git checkout master &&
486 git branch -f local $the_commit &&
489 git checkout local &&
490 git reset --hard $the_first_commit
492 git config remote.there.url testrepo &&
493 git config remote.there.push HEAD &&
494 git config branch.master.remote there &&
496 check_push_result $the_commit heads/master &&
497 check_push_result $the_first_commit heads/local
500 # clean up the cruft left with the previous one
501 git config
--remove-section remote.there
502 git config
--remove-section branch.master
504 test_expect_success
'push with config remote.*.pushurl' '
506 mk_test heads/master &&
507 git checkout master &&
508 git config remote.there.url test2repo &&
509 git config remote.there.pushurl testrepo &&
511 check_push_result $the_commit heads/master
514 # clean up the cruft left with the previous one
515 git config
--remove-section remote.there
517 test_expect_success
'push with dry-run' '
519 mk_test heads/master &&
522 old_commit=$(git show-ref -s --verify refs/heads/master)
524 git push --dry-run testrepo &&
525 check_push_result $old_commit heads/master
528 test_expect_success
'push updates local refs' '
530 mk_test heads/master &&
534 git pull .. master &&
536 test $(git rev-parse master) = \
537 $(git rev-parse remotes/origin/master)
542 test_expect_success
'push updates up-to-date local refs' '
544 mk_test heads/master &&
547 (cd child1 && git pull .. master && git push) &&
550 git pull ../child1 master &&
552 test $(git rev-parse master) = \
553 $(git rev-parse remotes/origin/master)
558 test_expect_success
'push preserves up-to-date packed refs' '
560 mk_test heads/master &&
565 ! test -f .git/refs/remotes/origin/master
570 test_expect_success
'push does not update local refs on failure' '
572 mk_test heads/master &&
574 mkdir testrepo/.git/hooks &&
575 echo "#!/no/frobnication/today" >testrepo/.git/hooks/pre-receive &&
576 chmod +x testrepo/.git/hooks/pre-receive &&
580 test_must_fail git push &&
581 test $(git rev-parse master) != \
582 $(git rev-parse remotes/origin/master)
587 test_expect_success
'allow deleting an invalid remote ref' '
589 mk_test heads/master &&
590 rm -f testrepo/.git/objects/??/* &&
591 git push testrepo :refs/heads/master &&
592 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
596 test_expect_success
'pushing valid refs triggers post-receive and post-update hooks' '
597 mk_test_with_hooks heads/master heads/next &&
598 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
599 newmaster=$(git show-ref -s --verify refs/heads/master) &&
600 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
602 git push testrepo refs/heads/master:refs/heads/master :refs/heads/next &&
605 cat >pre-receive.expect <<-EOF &&
606 $orgmaster $newmaster refs/heads/master
607 $orgnext $newnext refs/heads/next
610 cat >update.expect <<-EOF &&
611 refs/heads/master $orgmaster $newmaster
612 refs/heads/next $orgnext $newnext
615 cat >post-receive.expect <<-EOF &&
616 $orgmaster $newmaster refs/heads/master
617 $orgnext $newnext refs/heads/next
620 cat >post-update.expect <<-EOF &&
625 test_cmp pre-receive.expect pre-receive.actual &&
626 test_cmp update.expect update.actual &&
627 test_cmp post-receive.expect post-receive.actual &&
628 test_cmp post-update.expect post-update.actual
632 test_expect_success
'deleting dangling ref triggers hooks with correct args' '
633 mk_test_with_hooks heads/master &&
634 rm -f testrepo/.git/objects/??/* &&
635 git push testrepo :refs/heads/master &&
638 cat >pre-receive.expect <<-EOF &&
639 $_z40 $_z40 refs/heads/master
642 cat >update.expect <<-EOF &&
643 refs/heads/master $_z40 $_z40
646 cat >post-receive.expect <<-EOF &&
647 $_z40 $_z40 refs/heads/master
650 cat >post-update.expect <<-EOF &&
654 test_cmp pre-receive.expect pre-receive.actual &&
655 test_cmp update.expect update.actual &&
656 test_cmp post-receive.expect post-receive.actual &&
657 test_cmp post-update.expect post-update.actual
661 test_expect_success
'deletion of a non-existent ref is not fed to post-receive and post-update hooks' '
662 mk_test_with_hooks heads/master &&
663 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
664 newmaster=$(git show-ref -s --verify refs/heads/master) &&
665 git push testrepo master :refs/heads/nonexistent &&
668 cat >pre-receive.expect <<-EOF &&
669 $orgmaster $newmaster refs/heads/master
670 $_z40 $_z40 refs/heads/nonexistent
673 cat >update.expect <<-EOF &&
674 refs/heads/master $orgmaster $newmaster
675 refs/heads/nonexistent $_z40 $_z40
678 cat >post-receive.expect <<-EOF &&
679 $orgmaster $newmaster refs/heads/master
682 cat >post-update.expect <<-EOF &&
686 test_cmp pre-receive.expect pre-receive.actual &&
687 test_cmp update.expect update.actual &&
688 test_cmp post-receive.expect post-receive.actual &&
689 test_cmp post-update.expect post-update.actual
693 test_expect_success
'deletion of a non-existent ref alone does trigger post-receive and post-update hooks' '
694 mk_test_with_hooks heads/master &&
695 git push testrepo :refs/heads/nonexistent &&
698 cat >pre-receive.expect <<-EOF &&
699 $_z40 $_z40 refs/heads/nonexistent
702 cat >update.expect <<-EOF &&
703 refs/heads/nonexistent $_z40 $_z40
706 test_cmp pre-receive.expect pre-receive.actual &&
707 test_cmp update.expect update.actual &&
708 test_path_is_missing post-receive.actual &&
709 test_path_is_missing post-update.actual
713 test_expect_success
'mixed ref updates, deletes, invalid deletes trigger hooks with correct input' '
714 mk_test_with_hooks heads/master heads/next heads/pu &&
715 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
716 newmaster=$(git show-ref -s --verify refs/heads/master) &&
717 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
719 orgpu=$(cd testrepo && git show-ref -s --verify refs/heads/pu) &&
720 newpu=$(git show-ref -s --verify refs/heads/master) &&
721 git push testrepo refs/heads/master:refs/heads/master \
722 refs/heads/master:refs/heads/pu :refs/heads/next \
723 :refs/heads/nonexistent &&
726 cat >pre-receive.expect <<-EOF &&
727 $orgmaster $newmaster refs/heads/master
728 $orgnext $newnext refs/heads/next
729 $orgpu $newpu refs/heads/pu
730 $_z40 $_z40 refs/heads/nonexistent
733 cat >update.expect <<-EOF &&
734 refs/heads/master $orgmaster $newmaster
735 refs/heads/next $orgnext $newnext
736 refs/heads/pu $orgpu $newpu
737 refs/heads/nonexistent $_z40 $_z40
740 cat >post-receive.expect <<-EOF &&
741 $orgmaster $newmaster refs/heads/master
742 $orgnext $newnext refs/heads/next
743 $orgpu $newpu refs/heads/pu
746 cat >post-update.expect <<-EOF &&
752 test_cmp pre-receive.expect pre-receive.actual &&
753 test_cmp update.expect update.actual &&
754 test_cmp post-receive.expect post-receive.actual &&
755 test_cmp post-update.expect post-update.actual
759 test_expect_success
'allow deleting a ref using --delete' '
760 mk_test heads/master &&
761 (cd testrepo && git config receive.denyDeleteCurrent warn) &&
762 git push testrepo --delete master &&
763 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
766 test_expect_success
'allow deleting a tag using --delete' '
767 mk_test heads/master &&
768 git tag -a -m dummy_message deltag heads/master &&
769 git push testrepo --tags &&
770 (cd testrepo && git rev-parse --verify -q refs/tags/deltag) &&
771 git push testrepo --delete tag deltag &&
772 (cd testrepo && test_must_fail git rev-parse --verify refs/tags/deltag)
775 test_expect_success
'push --delete without args aborts' '
776 mk_test heads/master &&
777 test_must_fail git push testrepo --delete
780 test_expect_success
'push --delete refuses src:dest refspecs' '
781 mk_test heads/master &&
782 test_must_fail git push testrepo --delete master:foo
785 test_expect_success
'warn on push to HEAD of non-bare repository' '
786 mk_test heads/master &&
789 git checkout master &&
790 git config receive.denyCurrentBranch warn
792 git push testrepo master 2>stderr &&
793 grep "warning: updating the current branch" stderr
796 test_expect_success
'deny push to HEAD of non-bare repository' '
797 mk_test heads/master &&
800 git checkout master &&
801 git config receive.denyCurrentBranch true
803 test_must_fail git push testrepo master
806 test_expect_success
'allow push to HEAD of bare repository (bare)' '
807 mk_test heads/master &&
810 git checkout master &&
811 git config receive.denyCurrentBranch true &&
812 git config core.bare true
814 git push testrepo master 2>stderr &&
815 ! grep "warning: updating the current branch" stderr
818 test_expect_success
'allow push to HEAD of non-bare repository (config)' '
819 mk_test heads/master &&
822 git checkout master &&
823 git config receive.denyCurrentBranch false
825 git push testrepo master 2>stderr &&
826 ! grep "warning: updating the current branch" stderr
829 test_expect_success
'fetch with branches' '
831 git branch second $the_first_commit &&
832 git checkout second &&
833 echo ".." > testrepo/.git/branches/branch1 &&
837 r=$(git show-ref -s --verify refs/heads/branch1) &&
838 test "z$r" = "z$the_commit" &&
839 test 1 = $(git for-each-ref refs/heads | wc -l)
844 test_expect_success
'fetch with branches containing #' '
846 echo "..#second" > testrepo/.git/branches/branch2 &&
850 r=$(git show-ref -s --verify refs/heads/branch2) &&
851 test "z$r" = "z$the_first_commit" &&
852 test 1 = $(git for-each-ref refs/heads | wc -l)
857 test_expect_success
'push with branches' '
859 git checkout second &&
860 echo "testrepo" > .git/branches/branch1 &&
864 r=$(git show-ref -s --verify refs/heads/master) &&
865 test "z$r" = "z$the_first_commit" &&
866 test 1 = $(git for-each-ref refs/heads | wc -l)
870 test_expect_success
'push with branches containing #' '
872 echo "testrepo#branch3" > .git/branches/branch2 &&
876 r=$(git show-ref -s --verify refs/heads/branch3) &&
877 test "z$r" = "z$the_first_commit" &&
878 test 1 = $(git for-each-ref refs/heads | wc -l)
883 test_expect_success
'push into aliased refs (consistent)' '
884 mk_test heads/master &&
890 git symbolic-ref refs/heads/bar refs/heads/foo
891 git config receive.denyCurrentBranch false
898 git commit -a -m child2 &&
901 git push ../child1 foo bar
905 test_expect_success
'push into aliased refs (inconsistent)' '
906 mk_test heads/master &&
912 git symbolic-ref refs/heads/bar refs/heads/foo
913 git config receive.denyCurrentBranch false
920 git commit -a -m child2 &&
925 git commit -a -m child2 &&
927 test_must_fail git push ../child1 foo bar 2>stderr &&
928 grep "refusing inconsistent update" stderr
932 test_expect_success
'push requires --force to update lightweight tag' '
933 mk_test heads/master &&
939 git push ../child2 Tag &&
940 git push ../child2 Tag &&
943 git commit -m "file1" &&
945 test_must_fail git push ../child2 Tag &&
946 git push --force ../child2 Tag &&
948 test_must_fail git push ../child2 Tag HEAD~ &&
949 git push --force ../child2 Tag
953 test_expect_success
'push --porcelain' '
955 echo >.git/foo "To testrepo" &&
956 echo >>.git/foo "* refs/heads/master:refs/remotes/origin/master [new branch]" &&
957 echo >>.git/foo "Done" &&
958 git push >.git/bar --porcelain testrepo refs/heads/master:refs/remotes/origin/master &&
961 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
962 test "z$r" = "z$the_commit" &&
963 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
965 test_cmp .git/foo .git/bar
968 test_expect_success
'push --porcelain bad url' '
970 test_must_fail git push >.git/bar --porcelain asdfasdfasd refs/heads/master:refs/remotes/origin/master &&
971 test_must_fail grep -q Done .git/bar
974 test_expect_success
'push --porcelain rejected' '
976 git push testrepo refs/heads/master:refs/remotes/origin/master &&
978 git reset --hard origin/master^
979 git config receive.denyCurrentBranch true) &&
981 echo >.git/foo "To testrepo" &&
982 echo >>.git/foo "! refs/heads/master:refs/heads/master [remote rejected] (branch is currently checked out)" &&
984 test_must_fail git push >.git/bar --porcelain testrepo refs/heads/master:refs/heads/master &&
985 test_cmp .git/foo .git/bar
988 test_expect_success
'push --porcelain --dry-run rejected' '
990 git push testrepo refs/heads/master:refs/remotes/origin/master &&
992 git reset --hard origin/master
993 git config receive.denyCurrentBranch true) &&
995 echo >.git/foo "To testrepo" &&
996 echo >>.git/foo "! refs/heads/master^:refs/heads/master [rejected] (non-fast-forward)" &&
997 echo >>.git/foo "Done" &&
999 test_must_fail git push >.git/bar --porcelain --dry-run testrepo refs/heads/master^:refs/heads/master &&
1000 test_cmp .git/foo .git/bar
1003 test_expect_success
'push --prune' '
1004 mk_test heads/master heads/second heads/foo heads/bar &&
1005 git push --prune testrepo &&
1006 check_push_result $the_commit heads/master &&
1007 check_push_result $the_first_commit heads/second &&
1008 ! check_push_result $the_first_commit heads/foo heads/bar
1011 test_expect_success
'push --prune refspec' '
1012 mk_test tmp/master tmp/second tmp/foo tmp/bar &&
1013 git push --prune testrepo "refs/heads/*:refs/tmp/*" &&
1014 check_push_result $the_commit tmp/master &&
1015 check_push_result $the_first_commit tmp/second &&
1016 ! check_push_result $the_first_commit tmp/foo tmp/bar
1019 for configsection
in transfer receive
1021 test_expect_success
"push to update a ref hidden by $configsection.hiderefs" '
1022 mk_test heads/master hidden/one hidden/two hidden/three &&
1025 git config $configsection.hiderefs refs/hidden
1028 # push to unhidden ref succeeds normally
1029 git push testrepo master:refs/heads/master &&
1030 check_push_result $the_commit heads/master &&
1032 # push to update a hidden ref should fail
1033 test_must_fail git push testrepo master:refs/hidden/one &&
1034 check_push_result $the_first_commit hidden/one &&
1036 # push to delete a hidden ref should fail
1037 test_must_fail git push testrepo :refs/hidden/two &&
1038 check_push_result $the_first_commit hidden/two &&
1040 # idempotent push to update a hidden ref should fail
1041 test_must_fail git push testrepo $the_first_commit:refs/hidden/three &&
1042 check_push_result $the_first_commit hidden/three
1046 test_expect_success
'fetch exact SHA1' '
1047 mk_test heads/master hidden/one &&
1048 git push testrepo master:refs/hidden/one &&
1051 git config transfer.hiderefs refs/hidden
1053 check_push_result $the_commit hidden/one &&
1059 # make sure $the_commit does not exist here
1062 test_must_fail git cat-file -t $the_commit &&
1064 # fetching the hidden object should fail by default
1065 test_must_fail git fetch -v ../testrepo $the_commit:refs/heads/copy &&
1066 test_must_fail git rev-parse --verify refs/heads/copy &&
1068 # the server side can allow it to succeed
1071 git config uploadpack.allowtipsha1inwant true
1074 git fetch -v ../testrepo $the_commit:refs/heads/copy &&
1075 result=$(git rev-parse --verify refs/heads/copy) &&
1076 test "$the_commit" = "$result"
1080 test_expect_success
'fetch follows tags by default' '
1081 mk_test heads/master &&
1086 git pull ../testrepo master &&
1087 git tag -m "annotated" tag &&
1088 git for-each-ref >tmp1 &&
1091 sed -n "s|refs/heads/master$|refs/remotes/origin/master|p" tmp1
1093 sort -k 3 >../expect
1098 git remote add origin ../src &&
1099 git config branch.master.remote origin &&
1100 git config branch.master.merge refs/heads/master &&
1102 git for-each-ref >../actual
1104 test_cmp expect actual
1107 test_expect_success
'push does not follow tags by default' '
1108 mk_test heads/master &&
1111 git init --bare dst &&
1114 git pull ../testrepo master &&
1115 git tag -m "annotated" tag &&
1116 git checkout -b another &&
1117 git commit --allow-empty -m "future commit" &&
1118 git tag -m "future" future &&
1119 git checkout master &&
1120 git for-each-ref refs/heads/master >../expect &&
1121 git push ../dst master
1125 git for-each-ref >../actual
1127 test_cmp expect actual
1130 test_expect_success
'push --follow-tag only pushes relevant tags' '
1131 mk_test heads/master &&
1134 git init --bare dst &&
1137 git pull ../testrepo master &&
1138 git tag -m "annotated" tag &&
1139 git checkout -b another &&
1140 git commit --allow-empty -m "future commit" &&
1141 git tag -m "future" future &&
1142 git checkout master &&
1143 git for-each-ref refs/heads/master refs/tags/tag >../expect
1144 git push --follow-tag ../dst master
1148 git for-each-ref >../actual
1150 test_cmp expect actual