Merge branch 'jk/sha1-file-reduce-useless-warnings' into maint
[git.git] / t / t5505-remote.sh
blob7a8499ce665c74961fdbf6713c0b70c37f95f5e3
1 #!/bin/sh
3 test_description='git remote porcelain-ish'
5 . ./test-lib.sh
7 setup_repository () {
8 mkdir "$1" && (
9 cd "$1" &&
10 git init &&
11 >file &&
12 git add file &&
13 test_tick &&
14 git commit -m "Initial" &&
15 git checkout -b side &&
16 >elif &&
17 git add elif &&
18 test_tick &&
19 git commit -m "Second" &&
20 git checkout master
24 tokens_match () {
25 echo "$1" | tr ' ' '\012' | sort | sed -e '/^$/d' >expect &&
26 echo "$2" | tr ' ' '\012' | sort | sed -e '/^$/d' >actual &&
27 test_cmp expect actual
30 check_remote_track () {
31 actual=$(git remote show "$1" | sed -ne 's|^ \(.*\) tracked$|\1|p')
32 shift &&
33 tokens_match "$*" "$actual"
36 check_tracking_branch () {
37 f="" &&
38 r=$(git for-each-ref "--format=%(refname)" |
39 sed -ne "s|^refs/remotes/$1/||p") &&
40 shift &&
41 tokens_match "$*" "$r"
44 test_expect_success setup '
45 setup_repository one &&
46 setup_repository two &&
48 cd two &&
49 git branch another
50 ) &&
51 git clone one test
54 test_expect_success C_LOCALE_OUTPUT 'remote information for the origin' '
56 cd test &&
57 tokens_match origin "$(git remote)" &&
58 check_remote_track origin master side &&
59 check_tracking_branch origin HEAD master side
63 test_expect_success 'add another remote' '
65 cd test &&
66 git remote add -f second ../two &&
67 tokens_match "origin second" "$(git remote)" &&
68 check_tracking_branch second master side another &&
69 git for-each-ref "--format=%(refname)" refs/remotes |
70 sed -e "/^refs\/remotes\/origin\//d" \
71 -e "/^refs\/remotes\/second\//d" >actual &&
72 >expect &&
73 test_cmp expect actual
77 test_expect_success C_LOCALE_OUTPUT 'check remote-tracking' '
79 cd test &&
80 check_remote_track origin master side &&
81 check_remote_track second master side another
85 test_expect_success 'remote forces tracking branches' '
87 cd test &&
88 case `git config remote.second.fetch` in
89 +*) true ;;
90 *) false ;;
91 esac
95 test_expect_success 'remove remote' '
97 cd test &&
98 git symbolic-ref refs/remotes/second/HEAD refs/remotes/second/master &&
99 git remote rm second
103 test_expect_success C_LOCALE_OUTPUT 'remove remote' '
105 cd test &&
106 tokens_match origin "$(git remote)" &&
107 check_remote_track origin master side &&
108 git for-each-ref "--format=%(refname)" refs/remotes |
109 sed -e "/^refs\/remotes\/origin\//d" >actual &&
110 >expect &&
111 test_cmp expect actual
115 test_expect_success 'remove remote protects local branches' '
117 cd test &&
118 cat >expect1 <<-\EOF &&
119 Note: A branch outside the refs/remotes/ hierarchy was not removed;
120 to delete it, use:
121 git branch -d master
123 cat >expect2 <<-\EOF &&
124 Note: Some branches outside the refs/remotes/ hierarchy were not removed;
125 to delete them, use:
126 git branch -d foobranch
127 git branch -d master
129 git tag footag &&
130 git config --add remote.oops.fetch "+refs/*:refs/*" &&
131 git remote remove oops 2>actual1 &&
132 git branch foobranch &&
133 git config --add remote.oops.fetch "+refs/*:refs/*" &&
134 git remote rm oops 2>actual2 &&
135 git branch -d foobranch &&
136 git tag -d footag &&
137 test_i18ncmp expect1 actual1 &&
138 test_i18ncmp expect2 actual2
142 cat >test/expect <<EOF
143 * remote origin
144 Fetch URL: $(pwd)/one
145 Push URL: $(pwd)/one
146 HEAD branch: master
147 Remote branches:
148 master new (next fetch will store in remotes/origin)
149 side tracked
150 Local branches configured for 'git pull':
151 ahead merges with remote master
152 master merges with remote master
153 octopus merges with remote topic-a
154 and with remote topic-b
155 and with remote topic-c
156 rebase rebases onto remote master
157 Local refs configured for 'git push':
158 master pushes to master (local out of date)
159 master pushes to upstream (create)
160 * remote two
161 Fetch URL: ../two
162 Push URL: ../three
163 HEAD branch: master
164 Local refs configured for 'git push':
165 ahead forces to master (fast-forwardable)
166 master pushes to another (up to date)
169 test_expect_success 'show' '
171 cd test &&
172 git config --add remote.origin.fetch refs/heads/master:refs/heads/upstream &&
173 git fetch &&
174 git checkout -b ahead origin/master &&
175 echo 1 >>file &&
176 test_tick &&
177 git commit -m update file &&
178 git checkout master &&
179 git branch --track octopus origin/master &&
180 git branch --track rebase origin/master &&
181 git branch -d -r origin/master &&
182 git config --add remote.two.url ../two &&
183 git config --add remote.two.pushurl ../three &&
184 git config branch.rebase.rebase true &&
185 git config branch.octopus.merge "topic-a topic-b topic-c" &&
187 cd ../one &&
188 echo 1 >file &&
189 test_tick &&
190 git commit -m update file
191 ) &&
192 git config --add remote.origin.push : &&
193 git config --add remote.origin.push refs/heads/master:refs/heads/upstream &&
194 git config --add remote.origin.push +refs/tags/lastbackup &&
195 git config --add remote.two.push +refs/heads/ahead:refs/heads/master &&
196 git config --add remote.two.push refs/heads/master:refs/heads/another &&
197 git remote show origin two >output &&
198 git branch -d rebase octopus &&
199 test_i18ncmp expect output
203 cat >test/expect <<EOF
204 * remote origin
205 Fetch URL: $(pwd)/one
206 Push URL: $(pwd)/one
207 HEAD branch: (not queried)
208 Remote branches: (status not queried)
209 master
210 side
211 Local branches configured for 'git pull':
212 ahead merges with remote master
213 master merges with remote master
214 Local refs configured for 'git push' (status not queried):
215 (matching) pushes to (matching)
216 refs/heads/master pushes to refs/heads/upstream
217 refs/tags/lastbackup forces to refs/tags/lastbackup
220 test_expect_success 'show -n' '
221 mv one one.unreachable &&
223 cd test &&
224 git remote show -n origin >output &&
225 mv ../one.unreachable ../one &&
226 test_i18ncmp expect output
230 test_expect_success 'prune' '
232 cd one &&
233 git branch -m side side2
234 ) &&
236 cd test &&
237 git fetch origin &&
238 git remote prune origin &&
239 git rev-parse refs/remotes/origin/side2 &&
240 test_must_fail git rev-parse refs/remotes/origin/side
244 test_expect_success 'set-head --delete' '
246 cd test &&
247 git symbolic-ref refs/remotes/origin/HEAD &&
248 git remote set-head --delete origin &&
249 test_must_fail git symbolic-ref refs/remotes/origin/HEAD
253 test_expect_success 'set-head --auto' '
255 cd test &&
256 git remote set-head --auto origin &&
257 echo refs/remotes/origin/master >expect &&
258 git symbolic-ref refs/remotes/origin/HEAD >output &&
259 test_cmp expect output
263 test_expect_success 'set-head --auto has no problem w/multiple HEADs' '
265 cd test &&
266 git fetch two "refs/heads/*:refs/remotes/two/*" &&
267 git remote set-head --auto two >output 2>&1 &&
268 echo "two/HEAD set to master" >expect &&
269 test_i18ncmp expect output
273 cat >test/expect <<\EOF
274 refs/remotes/origin/side2
277 test_expect_success 'set-head explicit' '
279 cd test &&
280 git remote set-head origin side2 &&
281 git symbolic-ref refs/remotes/origin/HEAD >output &&
282 git remote set-head origin master &&
283 test_cmp expect output
287 cat >test/expect <<EOF
288 Pruning origin
289 URL: $(pwd)/one
290 * [would prune] origin/side2
293 test_expect_success 'prune --dry-run' '
295 cd one &&
296 git branch -m side2 side) &&
298 cd test &&
299 git remote prune --dry-run origin >output &&
300 git rev-parse refs/remotes/origin/side2 &&
301 test_must_fail git rev-parse refs/remotes/origin/side &&
303 cd ../one &&
304 git branch -m side side2) &&
305 test_i18ncmp expect output
309 test_expect_success 'add --mirror && prune' '
310 mkdir mirror &&
312 cd mirror &&
313 git init --bare &&
314 git remote add --mirror -f origin ../one
315 ) &&
317 cd one &&
318 git branch -m side2 side
319 ) &&
321 cd mirror &&
322 git rev-parse --verify refs/heads/side2 &&
323 test_must_fail git rev-parse --verify refs/heads/side &&
324 git fetch origin &&
325 git remote prune origin &&
326 test_must_fail git rev-parse --verify refs/heads/side2 &&
327 git rev-parse --verify refs/heads/side
331 test_expect_success 'add --mirror=fetch' '
332 mkdir mirror-fetch &&
333 git init mirror-fetch/parent &&
335 cd mirror-fetch/parent &&
336 test_commit one
337 ) &&
338 git init --bare mirror-fetch/child &&
340 cd mirror-fetch/child &&
341 git remote add --mirror=fetch -f parent ../parent
345 test_expect_success 'fetch mirrors act as mirrors during fetch' '
347 cd mirror-fetch/parent &&
348 git branch new &&
349 git branch -m master renamed
350 ) &&
352 cd mirror-fetch/child &&
353 git fetch parent &&
354 git rev-parse --verify refs/heads/new &&
355 git rev-parse --verify refs/heads/renamed
359 test_expect_success 'fetch mirrors can prune' '
361 cd mirror-fetch/child &&
362 git remote prune parent &&
363 test_must_fail git rev-parse --verify refs/heads/master
367 test_expect_success 'fetch mirrors do not act as mirrors during push' '
369 cd mirror-fetch/parent &&
370 git checkout HEAD^0
371 ) &&
373 cd mirror-fetch/child &&
374 git branch -m renamed renamed2 &&
375 git push parent :
376 ) &&
378 cd mirror-fetch/parent &&
379 git rev-parse --verify renamed &&
380 test_must_fail git rev-parse --verify refs/heads/renamed2
384 test_expect_success 'add fetch mirror with specific branches' '
385 git init --bare mirror-fetch/track &&
387 cd mirror-fetch/track &&
388 git remote add --mirror=fetch -t heads/new parent ../parent
392 test_expect_success 'fetch mirror respects specific branches' '
394 cd mirror-fetch/track &&
395 git fetch parent &&
396 git rev-parse --verify refs/heads/new &&
397 test_must_fail git rev-parse --verify refs/heads/renamed
401 test_expect_success 'add --mirror=push' '
402 mkdir mirror-push &&
403 git init --bare mirror-push/public &&
404 git init mirror-push/private &&
406 cd mirror-push/private &&
407 test_commit one &&
408 git remote add --mirror=push public ../public
412 test_expect_success 'push mirrors act as mirrors during push' '
414 cd mirror-push/private &&
415 git branch new &&
416 git branch -m master renamed &&
417 git push public
418 ) &&
420 cd mirror-push/private &&
421 git rev-parse --verify refs/heads/new &&
422 git rev-parse --verify refs/heads/renamed &&
423 test_must_fail git rev-parse --verify refs/heads/master
427 test_expect_success 'push mirrors do not act as mirrors during fetch' '
429 cd mirror-push/public &&
430 git branch -m renamed renamed2 &&
431 git symbolic-ref HEAD refs/heads/renamed2
432 ) &&
434 cd mirror-push/private &&
435 git fetch public &&
436 git rev-parse --verify refs/heads/renamed &&
437 test_must_fail git rev-parse --verify refs/heads/renamed2
441 test_expect_success 'push mirrors do not allow you to specify refs' '
442 git init mirror-push/track &&
444 cd mirror-push/track &&
445 test_must_fail git remote add --mirror=push -t new public ../public
449 test_expect_success 'add alt && prune' '
450 mkdir alttst &&
452 cd alttst &&
453 git init &&
454 git remote add -f origin ../one &&
455 git config remote.alt.url ../one &&
456 git config remote.alt.fetch "+refs/heads/*:refs/remotes/origin/*"
457 ) &&
459 cd one &&
460 git branch -m side side2
461 ) &&
463 cd alttst &&
464 git rev-parse --verify refs/remotes/origin/side &&
465 test_must_fail git rev-parse --verify refs/remotes/origin/side2 &&
466 git fetch alt &&
467 git remote prune alt &&
468 test_must_fail git rev-parse --verify refs/remotes/origin/side &&
469 git rev-parse --verify refs/remotes/origin/side2
473 cat >test/expect <<\EOF
474 some-tag
477 test_expect_success 'add with reachable tags (default)' '
479 cd one &&
480 >foobar &&
481 git add foobar &&
482 git commit -m "Foobar" &&
483 git tag -a -m "Foobar tag" foobar-tag &&
484 git reset --hard HEAD~1 &&
485 git tag -a -m "Some tag" some-tag
486 ) &&
487 mkdir add-tags &&
489 cd add-tags &&
490 git init &&
491 git remote add -f origin ../one &&
492 git tag -l some-tag >../test/output &&
493 git tag -l foobar-tag >>../test/output &&
494 test_must_fail git config remote.origin.tagopt
495 ) &&
496 test_cmp test/expect test/output
499 cat >test/expect <<\EOF
500 some-tag
501 foobar-tag
502 --tags
505 test_expect_success 'add --tags' '
506 rm -rf add-tags &&
508 mkdir add-tags &&
509 cd add-tags &&
510 git init &&
511 git remote add -f --tags origin ../one &&
512 git tag -l some-tag >../test/output &&
513 git tag -l foobar-tag >>../test/output &&
514 git config remote.origin.tagopt >>../test/output
515 ) &&
516 test_cmp test/expect test/output
519 cat >test/expect <<\EOF
520 --no-tags
523 test_expect_success 'add --no-tags' '
524 rm -rf add-tags &&
526 mkdir add-no-tags &&
527 cd add-no-tags &&
528 git init &&
529 git remote add -f --no-tags origin ../one &&
530 git tag -l some-tag >../test/output &&
531 git tag -l foobar-tag >../test/output &&
532 git config remote.origin.tagopt >>../test/output
533 ) &&
535 cd one &&
536 git tag -d some-tag foobar-tag
537 ) &&
538 test_cmp test/expect test/output
541 test_expect_success 'reject --no-no-tags' '
543 cd add-no-tags &&
544 test_must_fail git remote add -f --no-no-tags neworigin ../one
548 cat >one/expect <<\EOF
549 apis/master
550 apis/side
551 drosophila/another
552 drosophila/master
553 drosophila/side
556 test_expect_success 'update' '
558 cd one &&
559 git remote add drosophila ../two &&
560 git remote add apis ../mirror &&
561 git remote update &&
562 git branch -r >output &&
563 test_cmp expect output
567 cat >one/expect <<\EOF
568 drosophila/another
569 drosophila/master
570 drosophila/side
571 manduca/master
572 manduca/side
573 megaloprepus/master
574 megaloprepus/side
577 test_expect_success 'update with arguments' '
579 cd one &&
580 for b in $(git branch -r)
582 git branch -r -d $b || exit 1
583 done &&
584 git remote add manduca ../mirror &&
585 git remote add megaloprepus ../mirror &&
586 git config remotes.phobaeticus "drosophila megaloprepus" &&
587 git config remotes.titanus manduca &&
588 git remote update phobaeticus titanus &&
589 git branch -r >output &&
590 test_cmp expect output
594 test_expect_success 'update --prune' '
596 cd one &&
597 git branch -m side2 side3
598 ) &&
600 cd test &&
601 git remote update --prune &&
603 cd ../one &&
604 git branch -m side3 side2
605 ) &&
606 git rev-parse refs/remotes/origin/side3 &&
607 test_must_fail git rev-parse refs/remotes/origin/side2
611 cat >one/expect <<-\EOF
612 apis/master
613 apis/side
614 manduca/master
615 manduca/side
616 megaloprepus/master
617 megaloprepus/side
620 test_expect_success 'update default' '
622 cd one &&
623 for b in $(git branch -r)
625 git branch -r -d $b || exit 1
626 done &&
627 git config remote.drosophila.skipDefaultUpdate true &&
628 git remote update default &&
629 git branch -r >output &&
630 test_cmp expect output
634 cat >one/expect <<\EOF
635 drosophila/another
636 drosophila/master
637 drosophila/side
640 test_expect_success 'update default (overridden, with funny whitespace)' '
642 cd one &&
643 for b in $(git branch -r)
645 git branch -r -d $b || exit 1
646 done &&
647 git config remotes.default "$(printf "\t drosophila \n")" &&
648 git remote update default &&
649 git branch -r >output &&
650 test_cmp expect output
654 test_expect_success 'update (with remotes.default defined)' '
656 cd one &&
657 for b in $(git branch -r)
659 git branch -r -d $b || exit 1
660 done &&
661 git config remotes.default "drosophila" &&
662 git remote update &&
663 git branch -r >output &&
664 test_cmp expect output
668 test_expect_success '"remote show" does not show symbolic refs' '
669 git clone one three &&
671 cd three &&
672 git remote show origin >output &&
673 ! grep "^ *HEAD$" < output &&
674 ! grep -i stale < output
678 test_expect_success 'reject adding remote with an invalid name' '
679 test_must_fail git remote add some:url desired-name
682 # The first three test if the tracking branches are properly renamed,
683 # the last two ones check if the config is updated.
685 test_expect_success 'rename a remote' '
686 git clone one four &&
688 cd four &&
689 git remote rename origin upstream &&
690 rmdir .git/refs/remotes/origin &&
691 test "$(git symbolic-ref refs/remotes/upstream/HEAD)" = "refs/remotes/upstream/master" &&
692 test "$(git rev-parse upstream/master)" = "$(git rev-parse master)" &&
693 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" &&
694 test "$(git config branch.master.remote)" = "upstream"
698 test_expect_success 'rename does not update a non-default fetch refspec' '
699 git clone one four.one &&
701 cd four.one &&
702 git config remote.origin.fetch +refs/heads/*:refs/heads/origin/* &&
703 git remote rename origin upstream &&
704 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/heads/origin/*" &&
705 git rev-parse -q origin/master
709 test_expect_success 'rename a remote with name part of fetch spec' '
710 git clone one four.two &&
712 cd four.two &&
713 git remote rename origin remote &&
714 git remote rename remote upstream &&
715 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*"
719 test_expect_success 'rename a remote with name prefix of other remote' '
720 git clone one four.three &&
722 cd four.three &&
723 git remote add o git://example.com/repo.git &&
724 git remote rename o upstream &&
725 test "$(git rev-parse origin/master)" = "$(git rev-parse master)"
729 cat >remotes_origin <<EOF
730 URL: $(pwd)/one
731 Push: refs/heads/master:refs/heads/upstream
732 Push: refs/heads/next:refs/heads/upstream2
733 Pull: refs/heads/master:refs/heads/origin
734 Pull: refs/heads/next:refs/heads/origin2
737 test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' '
738 git clone one five &&
739 origin_url=$(pwd)/one &&
741 cd five &&
742 git remote remove origin &&
743 mkdir -p .git/remotes &&
744 cat ../remotes_origin >.git/remotes/origin &&
745 git remote rename origin origin &&
746 test_path_is_missing .git/remotes/origin &&
747 test "$(git config remote.origin.url)" = "$origin_url" &&
748 cat >push_expected <<-\EOF &&
749 refs/heads/master:refs/heads/upstream
750 refs/heads/next:refs/heads/upstream2
752 cat >fetch_expected <<-\EOF &&
753 refs/heads/master:refs/heads/origin
754 refs/heads/next:refs/heads/origin2
756 git config --get-all remote.origin.push >push_actual &&
757 git config --get-all remote.origin.fetch >fetch_actual &&
758 test_cmp push_expected push_actual &&
759 test_cmp fetch_expected fetch_actual
763 test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
764 git clone one six &&
765 origin_url=$(pwd)/one &&
767 cd six &&
768 git remote rm origin &&
769 echo "$origin_url" >.git/branches/origin &&
770 git remote rename origin origin &&
771 test_path_is_missing .git/branches/origin &&
772 test "$(git config remote.origin.url)" = "$origin_url" &&
773 test "$(git config remote.origin.fetch)" = "refs/heads/master:refs/heads/origin" &&
774 test "$(git config remote.origin.push)" = "HEAD:refs/heads/master"
778 test_expect_success 'migrate a remote from named file in $GIT_DIR/branches (2)' '
779 git clone one seven &&
781 cd seven &&
782 git remote rm origin &&
783 echo "quux#foom" > .git/branches/origin &&
784 git remote rename origin origin &&
785 test_path_is_missing .git/branches/origin &&
786 test "$(git config remote.origin.url)" = "quux" &&
787 test "$(git config remote.origin.fetch)" = "refs/heads/foom:refs/heads/origin"
788 test "$(git config remote.origin.push)" = "HEAD:refs/heads/foom"
792 test_expect_success 'remote prune to cause a dangling symref' '
793 git clone one eight &&
795 cd one &&
796 git checkout side2 &&
797 git branch -D master
798 ) &&
800 cd eight &&
801 git remote prune origin
802 ) >err 2>&1 &&
803 test_i18ngrep "has become dangling" err &&
805 : And the dangling symref will not cause other annoying errors &&
807 cd eight &&
808 git branch -a
809 ) 2>err &&
810 ! grep "points nowhere" err &&
812 cd eight &&
813 test_must_fail git branch nomore origin
814 ) 2>err &&
815 grep "dangling symref" err
818 test_expect_success 'show empty remote' '
819 test_create_repo empty &&
820 git clone empty empty-clone &&
822 cd empty-clone &&
823 git remote show origin
827 test_expect_success 'remote set-branches requires a remote' '
828 test_must_fail git remote set-branches &&
829 test_must_fail git remote set-branches --add
832 test_expect_success 'remote set-branches' '
833 echo "+refs/heads/*:refs/remotes/scratch/*" >expect.initial &&
834 sort <<-\EOF >expect.add &&
835 +refs/heads/*:refs/remotes/scratch/*
836 +refs/heads/other:refs/remotes/scratch/other
838 sort <<-\EOF >expect.replace &&
839 +refs/heads/maint:refs/remotes/scratch/maint
840 +refs/heads/master:refs/remotes/scratch/master
841 +refs/heads/next:refs/remotes/scratch/next
843 sort <<-\EOF >expect.add-two &&
844 +refs/heads/maint:refs/remotes/scratch/maint
845 +refs/heads/master:refs/remotes/scratch/master
846 +refs/heads/next:refs/remotes/scratch/next
847 +refs/heads/pu:refs/remotes/scratch/pu
848 +refs/heads/t/topic:refs/remotes/scratch/t/topic
850 sort <<-\EOF >expect.setup-ffonly &&
851 refs/heads/master:refs/remotes/scratch/master
852 +refs/heads/next:refs/remotes/scratch/next
854 sort <<-\EOF >expect.respect-ffonly &&
855 refs/heads/master:refs/remotes/scratch/master
856 +refs/heads/next:refs/remotes/scratch/next
857 +refs/heads/pu:refs/remotes/scratch/pu
860 git clone .git/ setbranches &&
862 cd setbranches &&
863 git remote rename origin scratch &&
864 git config --get-all remote.scratch.fetch >config-result &&
865 sort <config-result >../actual.initial &&
867 git remote set-branches scratch --add other &&
868 git config --get-all remote.scratch.fetch >config-result &&
869 sort <config-result >../actual.add &&
871 git remote set-branches scratch maint master next &&
872 git config --get-all remote.scratch.fetch >config-result &&
873 sort <config-result >../actual.replace &&
875 git remote set-branches --add scratch pu t/topic &&
876 git config --get-all remote.scratch.fetch >config-result &&
877 sort <config-result >../actual.add-two &&
879 git config --unset-all remote.scratch.fetch &&
880 git config remote.scratch.fetch \
881 refs/heads/master:refs/remotes/scratch/master &&
882 git config --add remote.scratch.fetch \
883 +refs/heads/next:refs/remotes/scratch/next &&
884 git config --get-all remote.scratch.fetch >config-result &&
885 sort <config-result >../actual.setup-ffonly &&
887 git remote set-branches --add scratch pu &&
888 git config --get-all remote.scratch.fetch >config-result &&
889 sort <config-result >../actual.respect-ffonly
890 ) &&
891 test_cmp expect.initial actual.initial &&
892 test_cmp expect.add actual.add &&
893 test_cmp expect.replace actual.replace &&
894 test_cmp expect.add-two actual.add-two &&
895 test_cmp expect.setup-ffonly actual.setup-ffonly &&
896 test_cmp expect.respect-ffonly actual.respect-ffonly
899 test_expect_success 'remote set-branches with --mirror' '
900 echo "+refs/*:refs/*" >expect.initial &&
901 echo "+refs/heads/master:refs/heads/master" >expect.replace &&
902 git clone --mirror .git/ setbranches-mirror &&
904 cd setbranches-mirror &&
905 git remote rename origin scratch &&
906 git config --get-all remote.scratch.fetch >../actual.initial &&
908 git remote set-branches scratch heads/master &&
909 git config --get-all remote.scratch.fetch >../actual.replace
910 ) &&
911 test_cmp expect.initial actual.initial &&
912 test_cmp expect.replace actual.replace
915 test_expect_success 'new remote' '
916 git remote add someremote foo &&
917 echo foo >expect &&
918 git config --get-all remote.someremote.url >actual &&
919 cmp expect actual
922 test_expect_success 'remote set-url bar' '
923 git remote set-url someremote bar &&
924 echo bar >expect &&
925 git config --get-all remote.someremote.url >actual &&
926 cmp expect actual
929 test_expect_success 'remote set-url baz bar' '
930 git remote set-url someremote baz bar &&
931 echo baz >expect &&
932 git config --get-all remote.someremote.url >actual &&
933 cmp expect actual
936 test_expect_success 'remote set-url zot bar' '
937 test_must_fail git remote set-url someremote zot bar &&
938 echo baz >expect &&
939 git config --get-all remote.someremote.url >actual &&
940 cmp expect actual
943 test_expect_success 'remote set-url --push zot baz' '
944 test_must_fail git remote set-url --push someremote zot baz &&
945 echo "YYY" >expect &&
946 echo baz >>expect &&
947 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
948 echo "YYY" >>actual &&
949 git config --get-all remote.someremote.url >>actual &&
950 cmp expect actual
953 test_expect_success 'remote set-url --push zot' '
954 git remote set-url --push someremote zot &&
955 echo zot >expect &&
956 echo "YYY" >>expect &&
957 echo baz >>expect &&
958 git config --get-all remote.someremote.pushurl >actual &&
959 echo "YYY" >>actual &&
960 git config --get-all remote.someremote.url >>actual &&
961 cmp expect actual
964 test_expect_success 'remote set-url --push qux zot' '
965 git remote set-url --push someremote qux zot &&
966 echo qux >expect &&
967 echo "YYY" >>expect &&
968 echo baz >>expect &&
969 git config --get-all remote.someremote.pushurl >actual &&
970 echo "YYY" >>actual &&
971 git config --get-all remote.someremote.url >>actual &&
972 cmp expect actual
975 test_expect_success 'remote set-url --push foo qu+x' '
976 git remote set-url --push someremote foo qu+x &&
977 echo foo >expect &&
978 echo "YYY" >>expect &&
979 echo baz >>expect &&
980 git config --get-all remote.someremote.pushurl >actual &&
981 echo "YYY" >>actual &&
982 git config --get-all remote.someremote.url >>actual &&
983 cmp expect actual
986 test_expect_success 'remote set-url --push --add aaa' '
987 git remote set-url --push --add someremote aaa &&
988 echo foo >expect &&
989 echo aaa >>expect &&
990 echo "YYY" >>expect &&
991 echo baz >>expect &&
992 git config --get-all remote.someremote.pushurl >actual &&
993 echo "YYY" >>actual &&
994 git config --get-all remote.someremote.url >>actual &&
995 cmp expect actual
998 test_expect_success 'remote set-url --push bar aaa' '
999 git remote set-url --push someremote bar aaa &&
1000 echo foo >expect &&
1001 echo bar >>expect &&
1002 echo "YYY" >>expect &&
1003 echo baz >>expect &&
1004 git config --get-all remote.someremote.pushurl >actual &&
1005 echo "YYY" >>actual &&
1006 git config --get-all remote.someremote.url >>actual &&
1007 cmp expect actual
1010 test_expect_success 'remote set-url --push --delete bar' '
1011 git remote set-url --push --delete someremote bar &&
1012 echo foo >expect &&
1013 echo "YYY" >>expect &&
1014 echo baz >>expect &&
1015 git config --get-all remote.someremote.pushurl >actual &&
1016 echo "YYY" >>actual &&
1017 git config --get-all remote.someremote.url >>actual &&
1018 cmp expect actual
1021 test_expect_success 'remote set-url --push --delete foo' '
1022 git remote set-url --push --delete someremote foo &&
1023 echo "YYY" >expect &&
1024 echo baz >>expect &&
1025 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1026 echo "YYY" >>actual &&
1027 git config --get-all remote.someremote.url >>actual &&
1028 cmp expect actual
1031 test_expect_success 'remote set-url --add bbb' '
1032 git remote set-url --add someremote bbb &&
1033 echo "YYY" >expect &&
1034 echo baz >>expect &&
1035 echo bbb >>expect &&
1036 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1037 echo "YYY" >>actual &&
1038 git config --get-all remote.someremote.url >>actual &&
1039 cmp expect actual
1042 test_expect_success 'remote set-url --delete .*' '
1043 test_must_fail git remote set-url --delete someremote .\* &&
1044 echo "YYY" >expect &&
1045 echo baz >>expect &&
1046 echo bbb >>expect &&
1047 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1048 echo "YYY" >>actual &&
1049 git config --get-all remote.someremote.url >>actual &&
1050 cmp expect actual
1053 test_expect_success 'remote set-url --delete bbb' '
1054 git remote set-url --delete someremote bbb &&
1055 echo "YYY" >expect &&
1056 echo baz >>expect &&
1057 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1058 echo "YYY" >>actual &&
1059 git config --get-all remote.someremote.url >>actual &&
1060 cmp expect actual
1063 test_expect_success 'remote set-url --delete baz' '
1064 test_must_fail git remote set-url --delete someremote baz &&
1065 echo "YYY" >expect &&
1066 echo baz >>expect &&
1067 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1068 echo "YYY" >>actual &&
1069 git config --get-all remote.someremote.url >>actual &&
1070 cmp expect actual
1073 test_expect_success 'remote set-url --add ccc' '
1074 git remote set-url --add someremote ccc &&
1075 echo "YYY" >expect &&
1076 echo baz >>expect &&
1077 echo ccc >>expect &&
1078 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1079 echo "YYY" >>actual &&
1080 git config --get-all remote.someremote.url >>actual &&
1081 cmp expect actual
1084 test_expect_success 'remote set-url --delete baz' '
1085 git remote set-url --delete someremote baz &&
1086 echo "YYY" >expect &&
1087 echo ccc >>expect &&
1088 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1089 echo "YYY" >>actual &&
1090 git config --get-all remote.someremote.url >>actual &&
1091 cmp expect actual
1094 test_expect_success 'extra args: setup' '
1095 # add a dummy origin so that this does not trigger failure
1096 git remote add origin .
1099 test_extra_arg () {
1100 test_expect_success "extra args: $*" "
1101 test_must_fail git remote $* bogus_extra_arg 2>actual &&
1102 grep '^usage:' actual
1106 test_extra_arg add nick url
1107 test_extra_arg rename origin newname
1108 test_extra_arg remove origin
1109 test_extra_arg set-head origin master
1110 # set-branches takes any number of args
1111 test_extra_arg set-url origin newurl oldurl
1112 # show takes any number of args
1113 # prune takes any number of args
1114 # update takes any number of args
1116 test_expect_success 'add remote matching the "insteadOf" URL' '
1117 git config url.xyz@example.com.insteadOf backup &&
1118 git remote add backup xyz@example.com
1121 test_done