3 test_description='git remote porcelain-ish'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
17 git commit -m "Initial" &&
18 git checkout -b side &&
22 git commit -m "Second" &&
28 echo "$1" | tr ' ' '\012' | sort | sed -e '/^$/d' >expect &&
29 echo "$2" | tr ' ' '\012' | sort | sed -e '/^$/d' >actual &&
30 test_cmp expect actual
33 check_remote_track () {
34 actual=$(git remote show "$1" | sed -ne 's|^ \(.*\) tracked$|\1|p')
36 tokens_match "$*" "$actual"
39 check_tracking_branch () {
41 r=$(git for-each-ref "--format=%(refname)" |
42 sed -ne "s|^refs/remotes/$1/||p") &&
44 tokens_match "$*" "$r"
47 test_expect_success setup '
48 setup_repository one &&
49 setup_repository two &&
57 test_expect_success 'add remote whose URL agrees with url.<...>.insteadOf' '
58 test_config url.git@host.com:team/repo.git.insteadOf myremote &&
59 git remote add myremote git@host.com:team/repo.git
62 test_expect_success 'remote information for the origin' '
65 tokens_match origin "$(git remote)" &&
66 check_remote_track origin main side &&
67 check_tracking_branch origin HEAD main side
71 test_expect_success 'add another remote' '
74 git remote add -f second ../two &&
75 tokens_match "origin second" "$(git remote)" &&
76 check_tracking_branch second main side another &&
77 git for-each-ref "--format=%(refname)" refs/remotes |
78 sed -e "/^refs\/remotes\/origin\//d" \
79 -e "/^refs\/remotes\/second\//d" >actual &&
80 test_must_be_empty actual
84 test_expect_success 'check remote-tracking' '
87 check_remote_track origin main side &&
88 check_remote_track second main side another
92 test_expect_success 'remote forces tracking branches' '
95 case $(git config remote.second.fetch) in
102 test_expect_success 'remove remote' '
105 git symbolic-ref refs/remotes/second/HEAD refs/remotes/second/main &&
110 test_expect_success 'remove remote' '
113 tokens_match origin "$(git remote)" &&
114 check_remote_track origin main side &&
115 git for-each-ref "--format=%(refname)" refs/remotes |
116 sed -e "/^refs\/remotes\/origin\//d" >actual &&
117 test_must_be_empty actual
121 test_expect_success 'remove remote protects local branches' '
124 cat >expect1 <<-\EOF &&
125 Note: A branch outside the refs/remotes/ hierarchy was not removed;
129 cat >expect2 <<-\EOF &&
130 Note: Some branches outside the refs/remotes/ hierarchy were not removed;
132 git branch -d foobranch
136 git config --add remote.oops.fetch "+refs/*:refs/*" &&
137 git remote remove oops 2>actual1 &&
138 git branch foobranch &&
139 git config --add remote.oops.fetch "+refs/*:refs/*" &&
140 git remote rm oops 2>actual2 &&
141 git branch -d foobranch &&
143 test_cmp expect1 actual1 &&
144 test_cmp expect2 actual2
148 test_expect_success 'remove errors out early when deleting non-existent branch' '
151 echo "error: No such remote: '\''foo'\''" >expect &&
152 test_expect_code 2 git remote rm foo 2>actual &&
153 test_cmp expect actual
157 test_expect_success 'remove remote with a branch without configured merge' '
158 test_when_finished "(
159 git -C test checkout main;
160 git -C test branch -D two;
161 git -C test config --remove-section remote.two;
162 git -C test config --remove-section branch.second;
167 git remote add two ../two &&
169 git checkout -b second two/main^0 &&
170 git config branch.second.remote two &&
176 test_expect_success 'rename errors out early when deleting non-existent branch' '
179 echo "error: No such remote: '\''foo'\''" >expect &&
180 test_expect_code 2 git remote rename foo bar 2>actual &&
181 test_cmp expect actual
185 test_expect_success 'rename errors out early when when new name is invalid' '
186 test_config remote.foo.vcs bar &&
187 echo "fatal: '\''invalid...name'\'' is not a valid remote name" >expect &&
188 test_must_fail git remote rename foo invalid...name 2>actual &&
189 test_cmp expect actual
192 test_expect_success 'add existing foreign_vcs remote' '
193 test_config remote.foo.vcs bar &&
194 echo "error: remote foo already exists." >expect &&
195 test_expect_code 3 git remote add foo bar 2>actual &&
196 test_cmp expect actual
199 test_expect_success 'add existing foreign_vcs remote' '
200 test_config remote.foo.vcs bar &&
201 test_config remote.bar.vcs bar &&
202 echo "error: remote bar already exists." >expect &&
203 test_expect_code 3 git remote rename foo bar 2>actual &&
204 test_cmp expect actual
207 test_expect_success 'add invalid foreign_vcs remote' '
208 echo "fatal: '\''invalid...name'\'' is not a valid remote name" >expect &&
209 test_must_fail git remote add invalid...name bar 2>actual &&
210 test_cmp expect actual
213 cat >test/expect <<EOF
215 Fetch URL: $(pwd)/one
219 main new (next fetch will store in remotes/origin)
221 Local branches configured for 'git pull':
222 ahead merges with remote main
223 main merges with remote main
224 octopus merges with remote topic-a
225 and with remote topic-b
226 and with remote topic-c
227 rebase rebases onto remote main
228 Local refs configured for 'git push':
229 main pushes to main (local out of date)
230 main pushes to upstream (create)
235 Local refs configured for 'git push':
236 ahead forces to main (fast-forwardable)
237 main pushes to another (up to date)
240 test_expect_success 'show' '
243 git config --add remote.origin.fetch refs/heads/main:refs/heads/upstream &&
245 git checkout -b ahead origin/main &&
248 git commit -m update file &&
250 git branch --track octopus origin/main &&
251 git branch --track rebase origin/main &&
252 git branch -d -r origin/main &&
253 git config --add remote.two.url ../two &&
254 git config --add remote.two.pushurl ../three &&
255 git config branch.rebase.rebase true &&
256 git config branch.octopus.merge "topic-a topic-b topic-c" &&
261 git commit -m update file
263 git config --add remote.origin.push : &&
264 git config --add remote.origin.push refs/heads/main:refs/heads/upstream &&
265 git config --add remote.origin.push +refs/tags/lastbackup &&
266 git config --add remote.two.push +refs/heads/ahead:refs/heads/main &&
267 git config --add remote.two.push refs/heads/main:refs/heads/another &&
268 git remote show origin two >output &&
269 git branch -d rebase octopus &&
270 test_cmp expect output
274 cat >test/expect <<EOF
276 Fetch URL: $(pwd)/one
278 HEAD branch: (not queried)
279 Remote branches: (status not queried)
282 Local branches configured for 'git pull':
283 ahead merges with remote main
284 main merges with remote main
285 Local refs configured for 'git push' (status not queried):
286 (matching) pushes to (matching)
287 refs/heads/main pushes to refs/heads/upstream
288 refs/tags/lastbackup forces to refs/tags/lastbackup
291 test_expect_success 'show -n' '
292 mv one one.unreachable &&
295 git remote show -n origin >output &&
296 mv ../one.unreachable ../one &&
297 test_cmp expect output
301 test_expect_success 'prune' '
304 git branch -m side side2
309 git remote prune origin &&
310 git rev-parse refs/remotes/origin/side2 &&
311 test_must_fail git rev-parse refs/remotes/origin/side
315 test_expect_success 'set-head --delete' '
318 git symbolic-ref refs/remotes/origin/HEAD &&
319 git remote set-head --delete origin &&
320 test_must_fail git symbolic-ref refs/remotes/origin/HEAD
324 test_expect_success 'set-head --auto' '
327 git remote set-head --auto origin &&
328 echo refs/remotes/origin/main >expect &&
329 git symbolic-ref refs/remotes/origin/HEAD >output &&
330 test_cmp expect output
334 test_expect_success 'set-head --auto has no problem w/multiple HEADs' '
337 git fetch two "refs/heads/*:refs/remotes/two/*" &&
338 git remote set-head --auto two >output 2>&1 &&
339 echo "two/HEAD set to main" >expect &&
340 test_cmp expect output
344 cat >test/expect <<\EOF
345 refs/remotes/origin/side2
348 test_expect_success 'set-head explicit' '
351 git remote set-head origin side2 &&
352 git symbolic-ref refs/remotes/origin/HEAD >output &&
353 git remote set-head origin main &&
354 test_cmp expect output
358 cat >test/expect <<EOF
361 * [would prune] origin/side2
364 test_expect_success 'prune --dry-run' '
365 git -C one branch -m side2 side &&
366 test_when_finished "git -C one branch -m side side2" &&
369 git remote prune --dry-run origin >output &&
370 git rev-parse refs/remotes/origin/side2 &&
371 test_must_fail git rev-parse refs/remotes/origin/side &&
372 test_cmp expect output
376 test_expect_success 'add --mirror && prune' '
381 git remote add --mirror -f origin ../one
385 git branch -m side2 side
389 git rev-parse --verify refs/heads/side2 &&
390 test_must_fail git rev-parse --verify refs/heads/side &&
392 git remote prune origin &&
393 test_must_fail git rev-parse --verify refs/heads/side2 &&
394 git rev-parse --verify refs/heads/side
398 test_expect_success 'add --mirror=fetch' '
399 mkdir mirror-fetch &&
400 git init -b main mirror-fetch/parent &&
402 cd mirror-fetch/parent &&
405 git init --bare mirror-fetch/child &&
407 cd mirror-fetch/child &&
408 git remote add --mirror=fetch -f parent ../parent
412 test_expect_success 'fetch mirrors act as mirrors during fetch' '
414 cd mirror-fetch/parent &&
416 git branch -m main renamed
419 cd mirror-fetch/child &&
421 git rev-parse --verify refs/heads/new &&
422 git rev-parse --verify refs/heads/renamed
426 test_expect_success 'fetch mirrors can prune' '
428 cd mirror-fetch/child &&
429 git remote prune parent &&
430 test_must_fail git rev-parse --verify refs/heads/main
434 test_expect_success 'fetch mirrors do not act as mirrors during push' '
436 cd mirror-fetch/parent &&
440 cd mirror-fetch/child &&
441 git branch -m renamed renamed2 &&
445 cd mirror-fetch/parent &&
446 git rev-parse --verify renamed &&
447 test_must_fail git rev-parse --verify refs/heads/renamed2
451 test_expect_success 'add fetch mirror with specific branches' '
452 git init --bare mirror-fetch/track &&
454 cd mirror-fetch/track &&
455 git remote add --mirror=fetch -t heads/new parent ../parent
459 test_expect_success 'fetch mirror respects specific branches' '
461 cd mirror-fetch/track &&
463 git rev-parse --verify refs/heads/new &&
464 test_must_fail git rev-parse --verify refs/heads/renamed
468 test_expect_success 'add --mirror=push' '
470 git init --bare mirror-push/public &&
471 git init -b main mirror-push/private &&
473 cd mirror-push/private &&
475 git remote add --mirror=push public ../public
479 test_expect_success 'push mirrors act as mirrors during push' '
481 cd mirror-push/private &&
483 git branch -m main renamed &&
487 cd mirror-push/private &&
488 git rev-parse --verify refs/heads/new &&
489 git rev-parse --verify refs/heads/renamed &&
490 test_must_fail git rev-parse --verify refs/heads/main
494 test_expect_success 'push mirrors do not act as mirrors during fetch' '
496 cd mirror-push/public &&
497 git branch -m renamed renamed2 &&
498 git symbolic-ref HEAD refs/heads/renamed2
501 cd mirror-push/private &&
503 git rev-parse --verify refs/heads/renamed &&
504 test_must_fail git rev-parse --verify refs/heads/renamed2
508 test_expect_success 'push mirrors do not allow you to specify refs' '
509 git init mirror-push/track &&
511 cd mirror-push/track &&
512 test_must_fail git remote add --mirror=push -t new public ../public
516 test_expect_success 'add alt && prune' '
521 git remote add -f origin ../one &&
522 git config remote.alt.url ../one &&
523 git config remote.alt.fetch "+refs/heads/*:refs/remotes/origin/*"
527 git branch -m side side2
531 git rev-parse --verify refs/remotes/origin/side &&
532 test_must_fail git rev-parse --verify refs/remotes/origin/side2 &&
534 git remote prune alt &&
535 test_must_fail git rev-parse --verify refs/remotes/origin/side &&
536 git rev-parse --verify refs/remotes/origin/side2
540 cat >test/expect <<\EOF
544 test_expect_success 'add with reachable tags (default)' '
549 git commit -m "Foobar" &&
550 git tag -a -m "Foobar tag" foobar-tag &&
551 git reset --hard HEAD~1 &&
552 git tag -a -m "Some tag" some-tag
558 git remote add -f origin ../one &&
559 git tag -l some-tag >../test/output &&
560 git tag -l foobar-tag >>../test/output &&
561 test_must_fail git config remote.origin.tagopt
563 test_cmp test/expect test/output
566 cat >test/expect <<\EOF
572 test_expect_success 'add --tags' '
578 git remote add -f --tags origin ../one &&
579 git tag -l some-tag >../test/output &&
580 git tag -l foobar-tag >>../test/output &&
581 git config remote.origin.tagopt >>../test/output
583 test_cmp test/expect test/output
586 cat >test/expect <<\EOF
590 test_expect_success 'add --no-tags' '
596 git remote add -f --no-tags origin ../one &&
597 grep tagOpt .git/config &&
598 git tag -l some-tag >../test/output &&
599 git tag -l foobar-tag >../test/output &&
600 git config remote.origin.tagopt >>../test/output
604 git tag -d some-tag foobar-tag
606 test_cmp test/expect test/output
609 test_expect_success 'reject --no-no-tags' '
612 test_must_fail git remote add -f --no-no-tags neworigin ../one
616 cat >one/expect <<\EOF
624 test_expect_success 'update' '
627 git remote add drosophila ../two &&
628 git remote add apis ../mirror &&
630 git branch -r >output &&
631 test_cmp expect output
635 cat >one/expect <<\EOF
645 test_expect_success 'update with arguments' '
648 for b in $(git branch -r)
650 git branch -r -d $b || exit 1
652 git remote add manduca ../mirror &&
653 git remote add megaloprepus ../mirror &&
654 git config remotes.phobaeticus "drosophila megaloprepus" &&
655 git config remotes.titanus manduca &&
656 git remote update phobaeticus titanus &&
657 git branch -r >output &&
658 test_cmp expect output
662 test_expect_success 'update --prune' '
665 git branch -m side2 side3
669 git remote update --prune &&
672 git branch -m side3 side2
674 git rev-parse refs/remotes/origin/side3 &&
675 test_must_fail git rev-parse refs/remotes/origin/side2
679 cat >one/expect <<-\EOF
688 test_expect_success 'update default' '
691 for b in $(git branch -r)
693 git branch -r -d $b || exit 1
695 git config remote.drosophila.skipDefaultUpdate true &&
696 git remote update default &&
697 git branch -r >output &&
698 test_cmp expect output
702 cat >one/expect <<\EOF
708 test_expect_success 'update default (overridden, with funny whitespace)' '
711 for b in $(git branch -r)
713 git branch -r -d $b || exit 1
715 git config remotes.default "$(printf "\t drosophila \n")" &&
716 git remote update default &&
717 git branch -r >output &&
718 test_cmp expect output
722 test_expect_success 'update (with remotes.default defined)' '
725 for b in $(git branch -r)
727 git branch -r -d $b || exit 1
729 git config remotes.default "drosophila" &&
731 git branch -r >output &&
732 test_cmp expect output
736 test_expect_success '"remote show" does not show symbolic refs' '
737 git clone one three &&
740 git remote show origin >output &&
741 ! grep "^ *HEAD$" < output &&
742 ! grep -i stale < output
746 test_expect_success 'reject adding remote with an invalid name' '
747 test_must_fail git remote add some:url desired-name
750 # The first three test if the tracking branches are properly renamed,
751 # the last two ones check if the config is updated.
753 test_expect_success 'rename a remote' '
754 test_config_global remote.pushDefault origin &&
755 git clone one four &&
758 git config branch.main.pushRemote origin &&
759 git remote rename origin upstream &&
760 grep "pushRemote" .git/config &&
761 test -z "$(git for-each-ref refs/remotes/origin)" &&
762 test "$(git symbolic-ref refs/remotes/upstream/HEAD)" = "refs/remotes/upstream/main" &&
763 test "$(git rev-parse upstream/main)" = "$(git rev-parse main)" &&
764 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" &&
765 test "$(git config branch.main.remote)" = "upstream" &&
766 test "$(git config branch.main.pushRemote)" = "upstream" &&
767 test "$(git config --global remote.pushDefault)" = "origin"
771 test_expect_success 'rename a remote renames repo remote.pushDefault' '
772 git clone one four.1 &&
775 git config remote.pushDefault origin &&
776 git remote rename origin upstream &&
777 grep pushDefault .git/config &&
778 test "$(git config --local remote.pushDefault)" = "upstream"
782 test_expect_success 'rename a remote renames repo remote.pushDefault but ignores global' '
783 test_config_global remote.pushDefault other &&
784 git clone one four.2 &&
787 git config remote.pushDefault origin &&
788 git remote rename origin upstream &&
789 test "$(git config --global remote.pushDefault)" = "other" &&
790 test "$(git config --local remote.pushDefault)" = "upstream"
794 test_expect_success 'rename a remote renames repo remote.pushDefault but keeps global' '
795 test_config_global remote.pushDefault origin &&
796 git clone one four.3 &&
799 git config remote.pushDefault origin &&
800 git remote rename origin upstream &&
801 test "$(git config --global remote.pushDefault)" = "origin" &&
802 test "$(git config --local remote.pushDefault)" = "upstream"
806 test_expect_success 'rename does not update a non-default fetch refspec' '
807 git clone one four.one &&
810 git config remote.origin.fetch +refs/heads/*:refs/heads/origin/* &&
811 git remote rename origin upstream &&
812 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/heads/origin/*" &&
813 git rev-parse -q origin/main
817 test_expect_success 'rename a remote with name part of fetch spec' '
818 git clone one four.two &&
821 git remote rename origin remote &&
822 git remote rename remote upstream &&
823 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*"
827 test_expect_success 'rename a remote with name prefix of other remote' '
828 git clone one four.three &&
831 git remote add o git://example.com/repo.git &&
832 git remote rename o upstream &&
833 test "$(git rev-parse origin/main)" = "$(git rev-parse main)"
837 test_expect_success 'rename succeeds with existing remote.<target>.prune' '
838 git clone one four.four &&
839 test_when_finished git config --global --unset remote.upstream.prune &&
840 git config --global remote.upstream.prune true &&
841 git -C four.four remote rename origin upstream
844 test_expect_success 'remove a remote' '
845 test_config_global remote.pushDefault origin &&
846 git clone one four.five &&
849 git config branch.main.pushRemote origin &&
850 git remote remove origin &&
851 test -z "$(git for-each-ref refs/remotes/origin)" &&
852 test_must_fail git config branch.main.remote &&
853 test_must_fail git config branch.main.pushRemote &&
854 test "$(git config --global remote.pushDefault)" = "origin"
858 test_expect_success 'remove a remote removes repo remote.pushDefault' '
859 git clone one four.five.1 &&
862 git config remote.pushDefault origin &&
863 git remote remove origin &&
864 test_must_fail git config --local remote.pushDefault
868 test_expect_success 'remove a remote removes repo remote.pushDefault but ignores global' '
869 test_config_global remote.pushDefault other &&
870 git clone one four.five.2 &&
873 git config remote.pushDefault origin &&
874 git remote remove origin &&
875 test "$(git config --global remote.pushDefault)" = "other" &&
876 test_must_fail git config --local remote.pushDefault
880 test_expect_success 'remove a remote removes repo remote.pushDefault but keeps global' '
881 test_config_global remote.pushDefault origin &&
882 git clone one four.five.3 &&
885 git config remote.pushDefault origin &&
886 git remote remove origin &&
887 test "$(git config --global remote.pushDefault)" = "origin" &&
888 test_must_fail git config --local remote.pushDefault
892 cat >remotes_origin <<EOF
894 Push: refs/heads/main:refs/heads/upstream
895 Push: refs/heads/next:refs/heads/upstream2
896 Pull: refs/heads/main:refs/heads/origin
897 Pull: refs/heads/next:refs/heads/origin2
900 test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' '
901 git clone one five &&
902 origin_url=$(pwd)/one &&
905 git remote remove origin &&
906 mkdir -p .git/remotes &&
907 cat ../remotes_origin >.git/remotes/origin &&
908 git remote rename origin origin &&
909 test_path_is_missing .git/remotes/origin &&
910 test "$(git config remote.origin.url)" = "$origin_url" &&
911 cat >push_expected <<-\EOF &&
912 refs/heads/main:refs/heads/upstream
913 refs/heads/next:refs/heads/upstream2
915 cat >fetch_expected <<-\EOF &&
916 refs/heads/main:refs/heads/origin
917 refs/heads/next:refs/heads/origin2
919 git config --get-all remote.origin.push >push_actual &&
920 git config --get-all remote.origin.fetch >fetch_actual &&
921 test_cmp push_expected push_actual &&
922 test_cmp fetch_expected fetch_actual
926 test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
928 origin_url=$(pwd)/one &&
931 git remote rm origin &&
932 echo "$origin_url#main" >.git/branches/origin &&
933 git remote rename origin origin &&
934 test_path_is_missing .git/branches/origin &&
935 test "$(git config remote.origin.url)" = "$origin_url" &&
936 test "$(git config remote.origin.fetch)" = "refs/heads/main:refs/heads/origin" &&
937 test "$(git config remote.origin.push)" = "HEAD:refs/heads/main"
941 test_expect_success 'migrate a remote from named file in $GIT_DIR/branches (2)' '
942 git clone one seven &&
945 git remote rm origin &&
946 echo "quux#foom" > .git/branches/origin &&
947 git remote rename origin origin &&
948 test_path_is_missing .git/branches/origin &&
949 test "$(git config remote.origin.url)" = "quux" &&
950 test "$(git config remote.origin.fetch)" = "refs/heads/foom:refs/heads/origin" &&
951 test "$(git config remote.origin.push)" = "HEAD:refs/heads/foom"
955 test_expect_success 'remote prune to cause a dangling symref' '
956 git clone one eight &&
959 git checkout side2 &&
964 git remote prune origin
966 test_i18ngrep "has become dangling" err &&
968 : And the dangling symref will not cause other annoying errors &&
973 ! grep "points nowhere" err &&
976 test_must_fail git branch nomore origin
978 test_i18ngrep "dangling symref" err
981 test_expect_success 'show empty remote' '
982 test_create_repo empty &&
983 git clone empty empty-clone &&
986 git remote show origin
990 test_expect_success 'remote set-branches requires a remote' '
991 test_must_fail git remote set-branches &&
992 test_must_fail git remote set-branches --add
995 test_expect_success 'remote set-branches' '
996 echo "+refs/heads/*:refs/remotes/scratch/*" >expect.initial &&
997 sort <<-\EOF >expect.add &&
998 +refs/heads/*:refs/remotes/scratch/*
999 +refs/heads/other:refs/remotes/scratch/other
1001 sort <<-\EOF >expect.replace &&
1002 +refs/heads/maint:refs/remotes/scratch/maint
1003 +refs/heads/main:refs/remotes/scratch/main
1004 +refs/heads/next:refs/remotes/scratch/next
1006 sort <<-\EOF >expect.add-two &&
1007 +refs/heads/maint:refs/remotes/scratch/maint
1008 +refs/heads/main:refs/remotes/scratch/main
1009 +refs/heads/next:refs/remotes/scratch/next
1010 +refs/heads/seen:refs/remotes/scratch/seen
1011 +refs/heads/t/topic:refs/remotes/scratch/t/topic
1013 sort <<-\EOF >expect.setup-ffonly &&
1014 refs/heads/main:refs/remotes/scratch/main
1015 +refs/heads/next:refs/remotes/scratch/next
1017 sort <<-\EOF >expect.respect-ffonly &&
1018 refs/heads/main:refs/remotes/scratch/main
1019 +refs/heads/next:refs/remotes/scratch/next
1020 +refs/heads/seen:refs/remotes/scratch/seen
1023 git clone .git/ setbranches &&
1026 git remote rename origin scratch &&
1027 git config --get-all remote.scratch.fetch >config-result &&
1028 sort <config-result >../actual.initial &&
1030 git remote set-branches scratch --add other &&
1031 git config --get-all remote.scratch.fetch >config-result &&
1032 sort <config-result >../actual.add &&
1034 git remote set-branches scratch maint main next &&
1035 git config --get-all remote.scratch.fetch >config-result &&
1036 sort <config-result >../actual.replace &&
1038 git remote set-branches --add scratch seen t/topic &&
1039 git config --get-all remote.scratch.fetch >config-result &&
1040 sort <config-result >../actual.add-two &&
1042 git config --unset-all remote.scratch.fetch &&
1043 git config remote.scratch.fetch \
1044 refs/heads/main:refs/remotes/scratch/main &&
1045 git config --add remote.scratch.fetch \
1046 +refs/heads/next:refs/remotes/scratch/next &&
1047 git config --get-all remote.scratch.fetch >config-result &&
1048 sort <config-result >../actual.setup-ffonly &&
1050 git remote set-branches --add scratch seen &&
1051 git config --get-all remote.scratch.fetch >config-result &&
1052 sort <config-result >../actual.respect-ffonly
1054 test_cmp expect.initial actual.initial &&
1055 test_cmp expect.add actual.add &&
1056 test_cmp expect.replace actual.replace &&
1057 test_cmp expect.add-two actual.add-two &&
1058 test_cmp expect.setup-ffonly actual.setup-ffonly &&
1059 test_cmp expect.respect-ffonly actual.respect-ffonly
1062 test_expect_success 'remote set-branches with --mirror' '
1063 echo "+refs/*:refs/*" >expect.initial &&
1064 echo "+refs/heads/main:refs/heads/main" >expect.replace &&
1065 git clone --mirror .git/ setbranches-mirror &&
1067 cd setbranches-mirror &&
1068 git remote rename origin scratch &&
1069 git config --get-all remote.scratch.fetch >../actual.initial &&
1071 git remote set-branches scratch heads/main &&
1072 git config --get-all remote.scratch.fetch >../actual.replace
1074 test_cmp expect.initial actual.initial &&
1075 test_cmp expect.replace actual.replace
1078 test_expect_success 'new remote' '
1079 git remote add someremote foo &&
1081 git config --get-all remote.someremote.url >actual &&
1087 git remote get-url "$@" >actual &&
1088 test_cmp expect actual
1091 test_expect_success 'get-url on new remote' '
1092 echo foo | get_url_test someremote &&
1093 echo foo | get_url_test --all someremote &&
1094 echo foo | get_url_test --push someremote &&
1095 echo foo | get_url_test --push --all someremote
1098 test_expect_success 'remote set-url with locked config' '
1099 test_when_finished "rm -f .git/config.lock" &&
1100 git config --get-all remote.someremote.url >expect &&
1101 >.git/config.lock &&
1102 test_must_fail git remote set-url someremote baz &&
1103 git config --get-all remote.someremote.url >actual &&
1107 test_expect_success 'remote set-url bar' '
1108 git remote set-url someremote bar &&
1110 git config --get-all remote.someremote.url >actual &&
1114 test_expect_success 'remote set-url baz bar' '
1115 git remote set-url someremote baz bar &&
1117 git config --get-all remote.someremote.url >actual &&
1121 test_expect_success 'remote set-url zot bar' '
1122 test_must_fail git remote set-url someremote zot bar &&
1124 git config --get-all remote.someremote.url >actual &&
1128 test_expect_success 'remote set-url --push zot baz' '
1129 test_must_fail git remote set-url --push someremote zot baz &&
1130 echo "YYY" >expect &&
1131 echo baz >>expect &&
1132 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1133 echo "YYY" >>actual &&
1134 git config --get-all remote.someremote.url >>actual &&
1138 test_expect_success 'remote set-url --push zot' '
1139 git remote set-url --push someremote zot &&
1141 echo "YYY" >>expect &&
1142 echo baz >>expect &&
1143 git config --get-all remote.someremote.pushurl >actual &&
1144 echo "YYY" >>actual &&
1145 git config --get-all remote.someremote.url >>actual &&
1149 test_expect_success 'get-url with different urls' '
1150 echo baz | get_url_test someremote &&
1151 echo baz | get_url_test --all someremote &&
1152 echo zot | get_url_test --push someremote &&
1153 echo zot | get_url_test --push --all someremote
1156 test_expect_success 'remote set-url --push qux zot' '
1157 git remote set-url --push someremote qux zot &&
1159 echo "YYY" >>expect &&
1160 echo baz >>expect &&
1161 git config --get-all remote.someremote.pushurl >actual &&
1162 echo "YYY" >>actual &&
1163 git config --get-all remote.someremote.url >>actual &&
1167 test_expect_success 'remote set-url --push foo qu+x' '
1168 git remote set-url --push someremote foo qu+x &&
1170 echo "YYY" >>expect &&
1171 echo baz >>expect &&
1172 git config --get-all remote.someremote.pushurl >actual &&
1173 echo "YYY" >>actual &&
1174 git config --get-all remote.someremote.url >>actual &&
1178 test_expect_success 'remote set-url --push --add aaa' '
1179 git remote set-url --push --add someremote aaa &&
1181 echo aaa >>expect &&
1182 echo "YYY" >>expect &&
1183 echo baz >>expect &&
1184 git config --get-all remote.someremote.pushurl >actual &&
1185 echo "YYY" >>actual &&
1186 git config --get-all remote.someremote.url >>actual &&
1190 test_expect_success 'get-url on multi push remote' '
1191 echo foo | get_url_test --push someremote &&
1192 get_url_test --push --all someremote <<-\EOF
1198 test_expect_success 'remote set-url --push bar aaa' '
1199 git remote set-url --push someremote bar aaa &&
1201 echo bar >>expect &&
1202 echo "YYY" >>expect &&
1203 echo baz >>expect &&
1204 git config --get-all remote.someremote.pushurl >actual &&
1205 echo "YYY" >>actual &&
1206 git config --get-all remote.someremote.url >>actual &&
1210 test_expect_success 'remote set-url --push --delete bar' '
1211 git remote set-url --push --delete someremote bar &&
1213 echo "YYY" >>expect &&
1214 echo baz >>expect &&
1215 git config --get-all remote.someremote.pushurl >actual &&
1216 echo "YYY" >>actual &&
1217 git config --get-all remote.someremote.url >>actual &&
1221 test_expect_success 'remote set-url --push --delete foo' '
1222 git remote set-url --push --delete someremote foo &&
1223 echo "YYY" >expect &&
1224 echo baz >>expect &&
1225 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1226 echo "YYY" >>actual &&
1227 git config --get-all remote.someremote.url >>actual &&
1231 test_expect_success 'remote set-url --add bbb' '
1232 git remote set-url --add someremote bbb &&
1233 echo "YYY" >expect &&
1234 echo baz >>expect &&
1235 echo bbb >>expect &&
1236 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1237 echo "YYY" >>actual &&
1238 git config --get-all remote.someremote.url >>actual &&
1242 test_expect_success 'get-url on multi fetch remote' '
1243 echo baz | get_url_test someremote &&
1244 get_url_test --all someremote <<-\EOF
1250 test_expect_success 'remote set-url --delete .*' '
1251 test_must_fail git remote set-url --delete someremote .\* &&
1252 echo "YYY" >expect &&
1253 echo baz >>expect &&
1254 echo bbb >>expect &&
1255 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1256 echo "YYY" >>actual &&
1257 git config --get-all remote.someremote.url >>actual &&
1261 test_expect_success 'remote set-url --delete bbb' '
1262 git remote set-url --delete someremote bbb &&
1263 echo "YYY" >expect &&
1264 echo baz >>expect &&
1265 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1266 echo "YYY" >>actual &&
1267 git config --get-all remote.someremote.url >>actual &&
1271 test_expect_success 'remote set-url --delete baz' '
1272 test_must_fail git remote set-url --delete someremote baz &&
1273 echo "YYY" >expect &&
1274 echo baz >>expect &&
1275 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1276 echo "YYY" >>actual &&
1277 git config --get-all remote.someremote.url >>actual &&
1281 test_expect_success 'remote set-url --add ccc' '
1282 git remote set-url --add someremote ccc &&
1283 echo "YYY" >expect &&
1284 echo baz >>expect &&
1285 echo ccc >>expect &&
1286 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1287 echo "YYY" >>actual &&
1288 git config --get-all remote.someremote.url >>actual &&
1292 test_expect_success 'remote set-url --delete baz' '
1293 git remote set-url --delete someremote baz &&
1294 echo "YYY" >expect &&
1295 echo ccc >>expect &&
1296 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
1297 echo "YYY" >>actual &&
1298 git config --get-all remote.someremote.url >>actual &&
1302 test_expect_success 'extra args: setup' '
1303 # add a dummy origin so that this does not trigger failure
1304 git remote add origin .
1308 test_expect_success "extra args: $*" "
1309 test_must_fail git remote $* bogus_extra_arg 2>actual &&
1310 test_i18ngrep '^usage:' actual
1314 test_extra_arg add nick url
1315 test_extra_arg rename origin newname
1316 test_extra_arg remove origin
1317 test_extra_arg set-head origin main
1318 # set-branches takes any number of args
1319 test_extra_arg get-url origin newurl
1320 test_extra_arg set-url origin newurl oldurl
1321 # show takes any number of args
1322 # prune takes any number of args
1323 # update takes any number of args
1325 test_expect_success 'add remote matching the "insteadOf" URL' '
1326 git config url.xyz@example.com.insteadOf backup &&
1327 git remote add backup xyz@example.com
1330 test_expect_success 'unqualified <dst> refspec DWIM and advice' '
1331 test_when_finished "(cd test && git tag -d some-tag)" &&
1334 git tag -a -m "Some tag" some-tag main &&
1336 for type in commit tag tree blob
1338 if test "$type" = "blob"
1340 oid=$(git rev-parse some-tag:file)
1342 oid=$(git rev-parse some-tag^{$type})
1344 test_must_fail git push origin $oid:dst 2>err &&
1345 test_i18ngrep "error: The destination you" err &&
1346 test_i18ngrep "hint: Did you mean" err &&
1347 test_must_fail git -c advice.pushUnqualifiedRefName=false \
1348 push origin $oid:dst 2>err &&
1349 test_i18ngrep "error: The destination you" err &&
1350 test_i18ngrep ! "hint: Did you mean" err ||
1357 test_expect_success 'refs/remotes/* <src> refspec and unqualified <dst> DWIM and advice' '
1360 git tag -a -m "Some tag" my-tag main &&
1361 git update-ref refs/trees/my-head-tree HEAD^{tree} &&
1362 git update-ref refs/blobs/my-file-blob HEAD:file
1366 git config --add remote.two.fetch "+refs/tags/*:refs/remotes/tags-from-two/*" &&
1367 git config --add remote.two.fetch "+refs/trees/*:refs/remotes/trees-from-two/*" &&
1368 git config --add remote.two.fetch "+refs/blobs/*:refs/remotes/blobs-from-two/*" &&
1369 git fetch --no-tags two &&
1371 test_must_fail git push origin refs/remotes/two/another:dst 2>err &&
1372 test_i18ngrep "error: The destination you" err &&
1374 test_must_fail git push origin refs/remotes/tags-from-two/my-tag:dst-tag 2>err &&
1375 test_i18ngrep "error: The destination you" err &&
1377 test_must_fail git push origin refs/remotes/trees-from-two/my-head-tree:dst-tree 2>err &&
1378 test_i18ngrep "error: The destination you" err &&
1380 test_must_fail git push origin refs/remotes/blobs-from-two/my-file-blob:dst-blob 2>err &&
1381 test_i18ngrep "error: The destination you" err