Add git remote set-branches
[git/jnareb-git.git] / t / t5505-remote.sh
blob8aaf53ed818126291cc644e02d6dcd569edbbff6
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 '
46 setup_repository one &&
47 setup_repository two &&
49 cd two && git branch another
50 ) &&
51 git clone one test
55 test_expect_success 'remote information for the origin' '
57 cd test &&
58 tokens_match origin "$(git remote)" &&
59 check_remote_track origin master side &&
60 check_tracking_branch origin HEAD master side
64 test_expect_success 'add another remote' '
66 cd test &&
67 git remote add -f second ../two &&
68 tokens_match "origin second" "$(git remote)" &&
69 check_remote_track origin master side &&
70 check_remote_track second master side another &&
71 check_tracking_branch second master side another &&
72 git for-each-ref "--format=%(refname)" refs/remotes |
73 sed -e "/^refs\/remotes\/origin\//d" \
74 -e "/^refs\/remotes\/second\//d" >actual &&
75 >expect &&
76 test_cmp expect actual
80 test_expect_success 'remote forces tracking branches' '
82 cd test &&
83 case `git config remote.second.fetch` in
84 +*) true ;;
85 *) false ;;
86 esac
90 test_expect_success 'remove remote' '
92 cd test &&
93 git symbolic-ref refs/remotes/second/HEAD refs/remotes/second/master &&
94 git remote rm second
98 test_expect_success 'remove remote' '
100 cd test &&
101 tokens_match origin "$(git remote)" &&
102 check_remote_track origin master side &&
103 git for-each-ref "--format=%(refname)" refs/remotes |
104 sed -e "/^refs\/remotes\/origin\//d" >actual &&
105 >expect &&
106 test_cmp expect actual
110 test_expect_success 'remove remote protects non-remote branches' '
112 cd test &&
113 { cat >expect1 <<EOF
114 Note: A non-remote branch was not removed; to delete it, use:
115 git branch -d master
117 } &&
118 { cat >expect2 <<EOF
119 Note: Non-remote branches were not removed; to delete them, use:
120 git branch -d foobranch
121 git branch -d master
123 } &&
124 git tag footag &&
125 git config --add remote.oops.fetch "+refs/*:refs/*" &&
126 git remote rm oops 2>actual1 &&
127 git branch foobranch &&
128 git config --add remote.oops.fetch "+refs/*:refs/*" &&
129 git remote rm oops 2>actual2 &&
130 git branch -d foobranch &&
131 git tag -d footag &&
132 test_cmp expect1 actual1 &&
133 test_cmp expect2 actual2
137 cat > test/expect << EOF
138 * remote origin
139 Fetch URL: $(pwd)/one
140 Push URL: $(pwd)/one
141 HEAD branch: master
142 Remote branches:
143 master new (next fetch will store in remotes/origin)
144 side tracked
145 Local branches configured for 'git pull':
146 ahead merges with remote master
147 master merges with remote master
148 octopus merges with remote topic-a
149 and with remote topic-b
150 and with remote topic-c
151 rebase rebases onto remote master
152 Local refs configured for 'git push':
153 master pushes to master (local out of date)
154 master pushes to upstream (create)
155 * remote two
156 Fetch URL: ../two
157 Push URL: ../three
158 HEAD branch (remote HEAD is ambiguous, may be one of the following):
159 another
160 master
161 Local refs configured for 'git push':
162 ahead forces to master (fast-forwardable)
163 master pushes to another (up to date)
166 test_expect_success 'show' '
167 (cd test &&
168 git config --add remote.origin.fetch refs/heads/master:refs/heads/upstream &&
169 git fetch &&
170 git checkout -b ahead origin/master &&
171 echo 1 >> file &&
172 test_tick &&
173 git commit -m update file &&
174 git checkout master &&
175 git branch --track octopus origin/master &&
176 git branch --track rebase origin/master &&
177 git branch -d -r origin/master &&
178 git config --add remote.two.url ../two &&
179 git config --add remote.two.pushurl ../three &&
180 git config branch.rebase.rebase true &&
181 git config branch.octopus.merge "topic-a topic-b topic-c" &&
182 (cd ../one &&
183 echo 1 > file &&
184 test_tick &&
185 git commit -m update file) &&
186 git config --add remote.origin.push : &&
187 git config --add remote.origin.push refs/heads/master:refs/heads/upstream &&
188 git config --add remote.origin.push +refs/tags/lastbackup &&
189 git config --add remote.two.push +refs/heads/ahead:refs/heads/master &&
190 git config --add remote.two.push refs/heads/master:refs/heads/another &&
191 git remote show origin two > output &&
192 git branch -d rebase octopus &&
193 test_cmp expect output)
196 cat > test/expect << EOF
197 * remote origin
198 Fetch URL: $(pwd)/one
199 Push URL: $(pwd)/one
200 HEAD branch: (not queried)
201 Remote branches: (status not queried)
202 master
203 side
204 Local branches configured for 'git pull':
205 ahead merges with remote master
206 master merges with remote master
207 Local refs configured for 'git push' (status not queried):
208 (matching) pushes to (matching)
209 refs/heads/master pushes to refs/heads/upstream
210 refs/tags/lastbackup forces to refs/tags/lastbackup
213 test_expect_success 'show -n' '
214 (mv one one.unreachable &&
215 cd test &&
216 git remote show -n origin > output &&
217 mv ../one.unreachable ../one &&
218 test_cmp expect output)
221 test_expect_success 'prune' '
222 (cd one &&
223 git branch -m side side2) &&
224 (cd test &&
225 git fetch origin &&
226 git remote prune origin &&
227 git rev-parse refs/remotes/origin/side2 &&
228 test_must_fail git rev-parse refs/remotes/origin/side)
231 test_expect_success 'set-head --delete' '
232 (cd test &&
233 git symbolic-ref refs/remotes/origin/HEAD &&
234 git remote set-head --delete origin &&
235 test_must_fail git symbolic-ref refs/remotes/origin/HEAD)
238 test_expect_success 'set-head --auto' '
239 (cd test &&
240 git remote set-head --auto origin &&
241 echo refs/remotes/origin/master >expect &&
242 git symbolic-ref refs/remotes/origin/HEAD >output &&
243 test_cmp expect output
247 cat >test/expect <<EOF
248 error: Multiple remote HEAD branches. Please choose one explicitly with:
249 git remote set-head two another
250 git remote set-head two master
253 test_expect_success 'set-head --auto fails w/multiple HEADs' '
254 (cd test &&
255 test_must_fail git remote set-head --auto two >output 2>&1 &&
256 test_cmp expect output)
259 cat >test/expect <<EOF
260 refs/remotes/origin/side2
263 test_expect_success 'set-head explicit' '
264 (cd test &&
265 git remote set-head origin side2 &&
266 git symbolic-ref refs/remotes/origin/HEAD >output &&
267 git remote set-head origin master &&
268 test_cmp expect output)
271 cat > test/expect << EOF
272 Pruning origin
273 URL: $(pwd)/one
274 * [would prune] origin/side2
277 test_expect_success 'prune --dry-run' '
278 (cd one &&
279 git branch -m side2 side) &&
280 (cd test &&
281 git remote prune --dry-run origin > output &&
282 git rev-parse refs/remotes/origin/side2 &&
283 test_must_fail git rev-parse refs/remotes/origin/side &&
284 (cd ../one &&
285 git branch -m side side2) &&
286 test_cmp expect output)
289 test_expect_success 'add --mirror && prune' '
290 (mkdir mirror &&
291 cd mirror &&
292 git init --bare &&
293 git remote add --mirror -f origin ../one) &&
294 (cd one &&
295 git branch -m side2 side) &&
296 (cd mirror &&
297 git rev-parse --verify refs/heads/side2 &&
298 test_must_fail git rev-parse --verify refs/heads/side &&
299 git fetch origin &&
300 git remote prune origin &&
301 test_must_fail git rev-parse --verify refs/heads/side2 &&
302 git rev-parse --verify refs/heads/side)
305 test_expect_success 'add alt && prune' '
306 (mkdir alttst &&
307 cd alttst &&
308 git init &&
309 git remote add -f origin ../one &&
310 git config remote.alt.url ../one &&
311 git config remote.alt.fetch "+refs/heads/*:refs/remotes/origin/*") &&
312 (cd one &&
313 git branch -m side side2) &&
314 (cd alttst &&
315 git rev-parse --verify refs/remotes/origin/side &&
316 test_must_fail git rev-parse --verify refs/remotes/origin/side2 &&
317 git fetch alt &&
318 git remote prune alt &&
319 test_must_fail git rev-parse --verify refs/remotes/origin/side &&
320 git rev-parse --verify refs/remotes/origin/side2)
323 cat > one/expect << EOF
324 apis/master
325 apis/side
326 drosophila/another
327 drosophila/master
328 drosophila/side
331 test_expect_success 'update' '
333 (cd one &&
334 git remote add drosophila ../two &&
335 git remote add apis ../mirror &&
336 git remote update &&
337 git branch -r > output &&
338 test_cmp expect output)
342 cat > one/expect << EOF
343 drosophila/another
344 drosophila/master
345 drosophila/side
346 manduca/master
347 manduca/side
348 megaloprepus/master
349 megaloprepus/side
352 test_expect_success 'update with arguments' '
354 (cd one &&
355 for b in $(git branch -r)
357 git branch -r -d $b || break
358 done &&
359 git remote add manduca ../mirror &&
360 git remote add megaloprepus ../mirror &&
361 git config remotes.phobaeticus "drosophila megaloprepus" &&
362 git config remotes.titanus manduca &&
363 git remote update phobaeticus titanus &&
364 git branch -r > output &&
365 test_cmp expect output)
369 test_expect_success 'update --prune' '
371 (cd one &&
372 git branch -m side2 side3) &&
373 (cd test &&
374 git remote update --prune &&
375 (cd ../one && git branch -m side3 side2)
376 git rev-parse refs/remotes/origin/side3 &&
377 test_must_fail git rev-parse refs/remotes/origin/side2)
380 cat > one/expect << EOF
381 apis/master
382 apis/side
383 manduca/master
384 manduca/side
385 megaloprepus/master
386 megaloprepus/side
389 test_expect_success 'update default' '
391 (cd one &&
392 for b in $(git branch -r)
394 git branch -r -d $b || break
395 done &&
396 git config remote.drosophila.skipDefaultUpdate true &&
397 git remote update default &&
398 git branch -r > output &&
399 test_cmp expect output)
403 cat > one/expect << EOF
404 drosophila/another
405 drosophila/master
406 drosophila/side
409 test_expect_success 'update default (overridden, with funny whitespace)' '
411 (cd one &&
412 for b in $(git branch -r)
414 git branch -r -d $b || break
415 done &&
416 git config remotes.default "$(printf "\t drosophila \n")" &&
417 git remote update default &&
418 git branch -r > output &&
419 test_cmp expect output)
423 test_expect_success 'update (with remotes.default defined)' '
425 (cd one &&
426 for b in $(git branch -r)
428 git branch -r -d $b || break
429 done &&
430 git config remotes.default "drosophila" &&
431 git remote update &&
432 git branch -r > output &&
433 test_cmp expect output)
437 test_expect_success '"remote show" does not show symbolic refs' '
439 git clone one three &&
440 (cd three &&
441 git remote show origin > output &&
442 ! grep "^ *HEAD$" < output &&
443 ! grep -i stale < output)
447 test_expect_success 'reject adding remote with an invalid name' '
449 test_must_fail git remote add some:url desired-name
453 # The first three test if the tracking branches are properly renamed,
454 # the last two ones check if the config is updated.
456 test_expect_success 'rename a remote' '
458 git clone one four &&
459 (cd four &&
460 git remote rename origin upstream &&
461 rmdir .git/refs/remotes/origin &&
462 test "$(git symbolic-ref refs/remotes/upstream/HEAD)" = "refs/remotes/upstream/master" &&
463 test "$(git rev-parse upstream/master)" = "$(git rev-parse master)" &&
464 test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" &&
465 test "$(git config branch.master.remote)" = "upstream")
469 cat > remotes_origin << EOF
470 URL: $(pwd)/one
471 Push: refs/heads/master:refs/heads/upstream
472 Pull: refs/heads/master:refs/heads/origin
475 test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' '
476 git clone one five &&
477 origin_url=$(pwd)/one &&
478 (cd five &&
479 git remote rm origin &&
480 mkdir -p .git/remotes &&
481 cat ../remotes_origin > .git/remotes/origin &&
482 git remote rename origin origin &&
483 ! test -f .git/remotes/origin &&
484 test "$(git config remote.origin.url)" = "$origin_url" &&
485 test "$(git config remote.origin.push)" = "refs/heads/master:refs/heads/upstream" &&
486 test "$(git config remote.origin.fetch)" = "refs/heads/master:refs/heads/origin")
489 test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
490 git clone one six &&
491 origin_url=$(pwd)/one &&
492 (cd six &&
493 git remote rm origin &&
494 echo "$origin_url" > .git/branches/origin &&
495 git remote rename origin origin &&
496 ! test -f .git/branches/origin &&
497 test "$(git config remote.origin.url)" = "$origin_url" &&
498 test "$(git config remote.origin.fetch)" = "refs/heads/master:refs/heads/origin")
501 test_expect_success 'remote prune to cause a dangling symref' '
502 git clone one seven &&
504 cd one &&
505 git checkout side2 &&
506 git branch -D master
507 ) &&
509 cd seven &&
510 git remote prune origin
511 ) >err 2>&1 &&
512 grep "has become dangling" err &&
514 : And the dangling symref will not cause other annoying errors &&
516 cd seven &&
517 git branch -a
518 ) 2>err &&
519 ! grep "points nowhere" err &&
521 cd seven &&
522 test_must_fail git branch nomore origin
523 ) 2>err &&
524 grep "dangling symref" err
527 test_expect_success 'show empty remote' '
529 test_create_repo empty &&
530 git clone empty empty-clone &&
532 cd empty-clone &&
533 git remote show origin
537 test_expect_success 'remote set-branches requires a remote' '
538 test_must_fail git remote set-branches &&
539 test_must_fail git remote set-branches --add
542 test_expect_success 'remote set-branches' '
543 echo "+refs/heads/*:refs/remotes/scratch/*" >expect.initial &&
544 sort <<-\EOF >expect.add &&
545 +refs/heads/*:refs/remotes/scratch/*
546 +refs/heads/other:refs/remotes/scratch/other
548 sort <<-\EOF >expect.replace &&
549 +refs/heads/maint:refs/remotes/scratch/maint
550 +refs/heads/master:refs/remotes/scratch/master
551 +refs/heads/next:refs/remotes/scratch/next
553 sort <<-\EOF >expect.add-two &&
554 +refs/heads/maint:refs/remotes/scratch/maint
555 +refs/heads/master:refs/remotes/scratch/master
556 +refs/heads/next:refs/remotes/scratch/next
557 +refs/heads/pu:refs/remotes/scratch/pu
558 +refs/heads/t/topic:refs/remotes/scratch/t/topic
560 sort <<-\EOF >expect.setup-ffonly &&
561 refs/heads/master:refs/remotes/scratch/master
562 +refs/heads/next:refs/remotes/scratch/next
564 sort <<-\EOF >expect.respect-ffonly &&
565 refs/heads/master:refs/remotes/scratch/master
566 +refs/heads/next:refs/remotes/scratch/next
567 +refs/heads/pu:refs/remotes/scratch/pu
570 git clone .git/ setbranches &&
572 cd setbranches &&
573 git remote rename origin scratch &&
574 git config --get-all remote.scratch.fetch >config-result &&
575 sort <config-result >../actual.initial &&
577 git remote set-branches scratch --add other &&
578 git config --get-all remote.scratch.fetch >config-result &&
579 sort <config-result >../actual.add &&
581 git remote set-branches scratch maint master next &&
582 git config --get-all remote.scratch.fetch >config-result &&
583 sort <config-result >../actual.replace &&
585 git remote set-branches --add scratch pu t/topic &&
586 git config --get-all remote.scratch.fetch >config-result &&
587 sort <config-result >../actual.add-two &&
589 git config --unset-all remote.scratch.fetch &&
590 git config remote.scratch.fetch \
591 refs/heads/master:refs/remotes/scratch/master &&
592 git config --add remote.scratch.fetch \
593 +refs/heads/next:refs/remotes/scratch/next &&
594 git config --get-all remote.scratch.fetch >config-result &&
595 sort <config-result >../actual.setup-ffonly &&
597 git remote set-branches --add scratch pu &&
598 git config --get-all remote.scratch.fetch >config-result &&
599 sort <config-result >../actual.respect-ffonly
600 ) &&
601 test_cmp expect.initial actual.initial &&
602 test_cmp expect.add actual.add &&
603 test_cmp expect.replace actual.replace &&
604 test_cmp expect.add-two actual.add-two &&
605 test_cmp expect.setup-ffonly actual.setup-ffonly &&
606 test_cmp expect.respect-ffonly actual.respect-ffonly
609 test_expect_success 'remote set-branches with --mirror' '
610 echo "+refs/*:refs/*" >expect.initial &&
611 echo "+refs/heads/master:refs/heads/master" >expect.replace &&
612 git clone --mirror .git/ setbranches-mirror &&
614 cd setbranches-mirror &&
615 git remote rename origin scratch &&
616 git config --get-all remote.scratch.fetch >../actual.initial &&
618 git remote set-branches scratch heads/master &&
619 git config --get-all remote.scratch.fetch >../actual.replace
620 ) &&
621 test_cmp expect.initial actual.initial &&
622 test_cmp expect.replace actual.replace
625 test_expect_success 'new remote' '
626 git remote add someremote foo &&
627 echo foo >expect &&
628 git config --get-all remote.someremote.url >actual &&
629 cmp expect actual
632 test_expect_success 'remote set-url bar' '
633 git remote set-url someremote bar &&
634 echo bar >expect &&
635 git config --get-all remote.someremote.url >actual &&
636 cmp expect actual
639 test_expect_success 'remote set-url baz bar' '
640 git remote set-url someremote baz bar &&
641 echo baz >expect &&
642 git config --get-all remote.someremote.url >actual &&
643 cmp expect actual
646 test_expect_success 'remote set-url zot bar' '
647 test_must_fail git remote set-url someremote zot bar &&
648 echo baz >expect &&
649 git config --get-all remote.someremote.url >actual &&
650 cmp expect actual
653 test_expect_success 'remote set-url --push zot baz' '
654 test_must_fail git remote set-url --push someremote zot baz &&
655 echo "YYY" >expect &&
656 echo baz >>expect &&
657 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
658 echo "YYY" >>actual &&
659 git config --get-all remote.someremote.url >>actual &&
660 cmp expect actual
663 test_expect_success 'remote set-url --push zot' '
664 git remote set-url --push someremote zot &&
665 echo zot >expect &&
666 echo "YYY" >>expect &&
667 echo baz >>expect &&
668 git config --get-all remote.someremote.pushurl >actual &&
669 echo "YYY" >>actual &&
670 git config --get-all remote.someremote.url >>actual &&
671 cmp expect actual
674 test_expect_success 'remote set-url --push qux zot' '
675 git remote set-url --push someremote qux zot &&
676 echo qux >expect &&
677 echo "YYY" >>expect &&
678 echo baz >>expect &&
679 git config --get-all remote.someremote.pushurl >actual &&
680 echo "YYY" >>actual &&
681 git config --get-all remote.someremote.url >>actual &&
682 cmp expect actual
685 test_expect_success 'remote set-url --push foo qu+x' '
686 git remote set-url --push someremote foo qu+x &&
687 echo foo >expect &&
688 echo "YYY" >>expect &&
689 echo baz >>expect &&
690 git config --get-all remote.someremote.pushurl >actual &&
691 echo "YYY" >>actual &&
692 git config --get-all remote.someremote.url >>actual &&
693 cmp expect actual
696 test_expect_success 'remote set-url --push --add aaa' '
697 git remote set-url --push --add someremote aaa &&
698 echo foo >expect &&
699 echo aaa >>expect &&
700 echo "YYY" >>expect &&
701 echo baz >>expect &&
702 git config --get-all remote.someremote.pushurl >actual &&
703 echo "YYY" >>actual &&
704 git config --get-all remote.someremote.url >>actual &&
705 cmp expect actual
708 test_expect_success 'remote set-url --push bar aaa' '
709 git remote set-url --push someremote bar aaa &&
710 echo foo >expect &&
711 echo bar >>expect &&
712 echo "YYY" >>expect &&
713 echo baz >>expect &&
714 git config --get-all remote.someremote.pushurl >actual &&
715 echo "YYY" >>actual &&
716 git config --get-all remote.someremote.url >>actual &&
717 cmp expect actual
720 test_expect_success 'remote set-url --push --delete bar' '
721 git remote set-url --push --delete someremote bar &&
722 echo foo >expect &&
723 echo "YYY" >>expect &&
724 echo baz >>expect &&
725 git config --get-all remote.someremote.pushurl >actual &&
726 echo "YYY" >>actual &&
727 git config --get-all remote.someremote.url >>actual &&
728 cmp expect actual
731 test_expect_success 'remote set-url --push --delete foo' '
732 git remote set-url --push --delete someremote foo &&
733 echo "YYY" >expect &&
734 echo baz >>expect &&
735 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
736 echo "YYY" >>actual &&
737 git config --get-all remote.someremote.url >>actual &&
738 cmp expect actual
741 test_expect_success 'remote set-url --add bbb' '
742 git remote set-url --add someremote bbb &&
743 echo "YYY" >expect &&
744 echo baz >>expect &&
745 echo bbb >>expect &&
746 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
747 echo "YYY" >>actual &&
748 git config --get-all remote.someremote.url >>actual &&
749 cmp expect actual
752 test_expect_success 'remote set-url --delete .*' '
753 test_must_fail git remote set-url --delete someremote .\* &&
754 echo "YYY" >expect &&
755 echo baz >>expect &&
756 echo bbb >>expect &&
757 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
758 echo "YYY" >>actual &&
759 git config --get-all remote.someremote.url >>actual &&
760 cmp expect actual
763 test_expect_success 'remote set-url --delete bbb' '
764 git remote set-url --delete someremote bbb &&
765 echo "YYY" >expect &&
766 echo baz >>expect &&
767 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
768 echo "YYY" >>actual &&
769 git config --get-all remote.someremote.url >>actual &&
770 cmp expect actual
773 test_expect_success 'remote set-url --delete baz' '
774 test_must_fail git remote set-url --delete someremote baz &&
775 echo "YYY" >expect &&
776 echo baz >>expect &&
777 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
778 echo "YYY" >>actual &&
779 git config --get-all remote.someremote.url >>actual &&
780 cmp expect actual
783 test_expect_success 'remote set-url --add ccc' '
784 git remote set-url --add someremote ccc &&
785 echo "YYY" >expect &&
786 echo baz >>expect &&
787 echo ccc >>expect &&
788 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
789 echo "YYY" >>actual &&
790 git config --get-all remote.someremote.url >>actual &&
791 cmp expect actual
794 test_expect_success 'remote set-url --delete baz' '
795 git remote set-url --delete someremote baz &&
796 echo "YYY" >expect &&
797 echo ccc >>expect &&
798 test_must_fail git config --get-all remote.someremote.pushurl >actual &&
799 echo "YYY" >>actual &&
800 git config --get-all remote.someremote.url >>actual &&
801 cmp expect actual
804 test_done