15186c8cbfa7a3c7409033a26cdfd16835e1c7cd
   1#!/bin/sh
   2
   3test_description='git remote porcelain-ish'
   4
   5. ./test-lib.sh
   6
   7setup_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
  21        )
  22}
  23
  24tokens_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
  28}
  29
  30check_remote_track () {
  31        actual=$(git remote show "$1" | sed -ne 's|^    \(.*\) tracked$|\1|p')
  32        shift &&
  33        tokens_match "$*" "$actual"
  34}
  35
  36check_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"
  42}
  43
  44test_expect_success setup '
  45
  46        setup_repository one &&
  47        setup_repository two &&
  48        (
  49                cd two && git branch another
  50        ) &&
  51        git clone one test
  52
  53'
  54
  55test_expect_success 'remote information for the origin' '
  56(
  57        cd test &&
  58        tokens_match origin "$(git remote)" &&
  59        check_remote_track origin master side &&
  60        check_tracking_branch origin HEAD master side
  61)
  62'
  63
  64test_expect_success 'add another remote' '
  65(
  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
  77)
  78'
  79
  80test_expect_success 'remote forces tracking branches' '
  81(
  82        cd test &&
  83        case `git config remote.second.fetch` in
  84        +*) true ;;
  85         *) false ;;
  86        esac
  87)
  88'
  89
  90test_expect_success 'remove remote' '
  91(
  92        cd test &&
  93        git symbolic-ref refs/remotes/second/HEAD refs/remotes/second/master &&
  94        git remote rm second
  95)
  96'
  97
  98test_expect_success 'remove remote' '
  99(
 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
 107)
 108'
 109
 110test_expect_success 'remove remote protects local branches' '
 111(
 112        cd test &&
 113        { cat >expect1 <<EOF
 114Note: A branch outside the refs/remotes/ hierarchy was not removed;
 115to delete it, use:
 116  git branch -d master
 117EOF
 118        } &&
 119        { cat >expect2 <<EOF
 120Note: Some branches outside the refs/remotes/ hierarchy were not removed;
 121to delete them, use:
 122  git branch -d foobranch
 123  git branch -d master
 124EOF
 125        } &&
 126        git tag footag &&
 127        git config --add remote.oops.fetch "+refs/*:refs/*" &&
 128        git remote rm oops 2>actual1 &&
 129        git branch foobranch &&
 130        git config --add remote.oops.fetch "+refs/*:refs/*" &&
 131        git remote rm oops 2>actual2 &&
 132        git branch -d foobranch &&
 133        git tag -d footag &&
 134        test_cmp expect1 actual1 &&
 135        test_cmp expect2 actual2
 136)
 137'
 138
 139cat > test/expect << EOF
 140* remote origin
 141  Fetch URL: $(pwd)/one
 142  Push  URL: $(pwd)/one
 143  HEAD branch: master
 144  Remote branches:
 145    master new (next fetch will store in remotes/origin)
 146    side   tracked
 147  Local branches configured for 'git pull':
 148    ahead    merges with remote master
 149    master   merges with remote master
 150    octopus  merges with remote topic-a
 151                and with remote topic-b
 152                and with remote topic-c
 153    rebase  rebases onto remote master
 154  Local refs configured for 'git push':
 155    master pushes to master   (local out of date)
 156    master pushes to upstream (create)
 157* remote two
 158  Fetch URL: ../two
 159  Push  URL: ../three
 160  HEAD branch (remote HEAD is ambiguous, may be one of the following):
 161    another
 162    master
 163  Local refs configured for 'git push':
 164    ahead  forces to master  (fast-forwardable)
 165    master pushes to another (up to date)
 166EOF
 167
 168test_expect_success 'show' '
 169        (cd test &&
 170         git config --add remote.origin.fetch refs/heads/master:refs/heads/upstream &&
 171         git fetch &&
 172         git checkout -b ahead origin/master &&
 173         echo 1 >> file &&
 174         test_tick &&
 175         git commit -m update file &&
 176         git checkout master &&
 177         git branch --track octopus origin/master &&
 178         git branch --track rebase origin/master &&
 179         git branch -d -r origin/master &&
 180         git config --add remote.two.url ../two &&
 181         git config --add remote.two.pushurl ../three &&
 182         git config branch.rebase.rebase true &&
 183         git config branch.octopus.merge "topic-a topic-b topic-c" &&
 184         (cd ../one &&
 185          echo 1 > file &&
 186          test_tick &&
 187          git commit -m update file) &&
 188         git config --add remote.origin.push : &&
 189         git config --add remote.origin.push refs/heads/master:refs/heads/upstream &&
 190         git config --add remote.origin.push +refs/tags/lastbackup &&
 191         git config --add remote.two.push +refs/heads/ahead:refs/heads/master &&
 192         git config --add remote.two.push refs/heads/master:refs/heads/another &&
 193         git remote show origin two > output &&
 194         git branch -d rebase octopus &&
 195         test_cmp expect output)
 196'
 197
 198cat > test/expect << EOF
 199* remote origin
 200  Fetch URL: $(pwd)/one
 201  Push  URL: $(pwd)/one
 202  HEAD branch: (not queried)
 203  Remote branches: (status not queried)
 204    master
 205    side
 206  Local branches configured for 'git pull':
 207    ahead  merges with remote master
 208    master merges with remote master
 209  Local refs configured for 'git push' (status not queried):
 210    (matching)           pushes to (matching)
 211    refs/heads/master    pushes to refs/heads/upstream
 212    refs/tags/lastbackup forces to refs/tags/lastbackup
 213EOF
 214
 215test_expect_success 'show -n' '
 216        (mv one one.unreachable &&
 217         cd test &&
 218         git remote show -n origin > output &&
 219         mv ../one.unreachable ../one &&
 220         test_cmp expect output)
 221'
 222
 223test_expect_success 'prune' '
 224        (cd one &&
 225         git branch -m side side2) &&
 226        (cd test &&
 227         git fetch origin &&
 228         git remote prune origin &&
 229         git rev-parse refs/remotes/origin/side2 &&
 230         test_must_fail git rev-parse refs/remotes/origin/side)
 231'
 232
 233test_expect_success 'set-head --delete' '
 234        (cd test &&
 235         git symbolic-ref refs/remotes/origin/HEAD &&
 236         git remote set-head --delete origin &&
 237         test_must_fail git symbolic-ref refs/remotes/origin/HEAD)
 238'
 239
 240test_expect_success 'set-head --auto' '
 241        (cd test &&
 242         git remote set-head --auto origin &&
 243         echo refs/remotes/origin/master >expect &&
 244         git symbolic-ref refs/remotes/origin/HEAD >output &&
 245         test_cmp expect output
 246        )
 247'
 248
 249cat >test/expect <<EOF
 250error: Multiple remote HEAD branches. Please choose one explicitly with:
 251  git remote set-head two another
 252  git remote set-head two master
 253EOF
 254
 255test_expect_success 'set-head --auto fails w/multiple HEADs' '
 256        (cd test &&
 257         test_must_fail git remote set-head --auto two >output 2>&1 &&
 258        test_cmp expect output)
 259'
 260
 261cat >test/expect <<EOF
 262refs/remotes/origin/side2
 263EOF
 264
 265test_expect_success 'set-head explicit' '
 266        (cd test &&
 267         git remote set-head origin side2 &&
 268         git symbolic-ref refs/remotes/origin/HEAD >output &&
 269         git remote set-head origin master &&
 270         test_cmp expect output)
 271'
 272
 273cat > test/expect << EOF
 274Pruning origin
 275URL: $(pwd)/one
 276 * [would prune] origin/side2
 277EOF
 278
 279test_expect_success 'prune --dry-run' '
 280        (cd one &&
 281         git branch -m side2 side) &&
 282        (cd test &&
 283         git remote prune --dry-run origin > output &&
 284         git rev-parse refs/remotes/origin/side2 &&
 285         test_must_fail git rev-parse refs/remotes/origin/side &&
 286        (cd ../one &&
 287         git branch -m side side2) &&
 288         test_cmp expect output)
 289'
 290
 291test_expect_success 'add --mirror && prune' '
 292        (mkdir mirror &&
 293         cd mirror &&
 294         git init --bare &&
 295         git remote add --mirror -f origin ../one) &&
 296        (cd one &&
 297         git branch -m side2 side) &&
 298        (cd mirror &&
 299         git rev-parse --verify refs/heads/side2 &&
 300         test_must_fail git rev-parse --verify refs/heads/side &&
 301         git fetch origin &&
 302         git remote prune origin &&
 303         test_must_fail git rev-parse --verify refs/heads/side2 &&
 304         git rev-parse --verify refs/heads/side)
 305'
 306
 307test_expect_success 'add --mirror=fetch' '
 308        mkdir mirror-fetch &&
 309        git init mirror-fetch/parent &&
 310        (cd mirror-fetch/parent &&
 311         test_commit one) &&
 312        git init --bare mirror-fetch/child &&
 313        (cd mirror-fetch/child &&
 314         git remote add --mirror=fetch -f parent ../parent)
 315'
 316
 317test_expect_success 'fetch mirrors act as mirrors during fetch' '
 318        (cd mirror-fetch/parent &&
 319         git branch new &&
 320         git branch -m master renamed
 321        ) &&
 322        (cd mirror-fetch/child &&
 323         git fetch parent &&
 324         git rev-parse --verify refs/heads/new &&
 325         git rev-parse --verify refs/heads/renamed
 326        )
 327'
 328
 329test_expect_success 'fetch mirrors can prune' '
 330        (cd mirror-fetch/child &&
 331         git remote prune parent &&
 332         test_must_fail git rev-parse --verify refs/heads/master
 333        )
 334'
 335
 336test_expect_success 'fetch mirrors do not act as mirrors during push' '
 337        (cd mirror-fetch/parent &&
 338         git checkout HEAD^0
 339        ) &&
 340        (cd mirror-fetch/child &&
 341         git branch -m renamed renamed2 &&
 342         git push parent
 343        ) &&
 344        (cd mirror-fetch/parent &&
 345         git rev-parse --verify renamed &&
 346         test_must_fail git rev-parse --verify refs/heads/renamed2
 347        )
 348'
 349
 350test_expect_success 'add fetch mirror with specific branches' '
 351        git init --bare mirror-fetch/track &&
 352        (cd mirror-fetch/track &&
 353         git remote add --mirror=fetch -t heads/new parent ../parent
 354        )
 355'
 356
 357test_expect_success 'fetch mirror respects specific branches' '
 358        (cd mirror-fetch/track &&
 359         git fetch parent &&
 360         git rev-parse --verify refs/heads/new &&
 361         test_must_fail git rev-parse --verify refs/heads/renamed
 362        )
 363'
 364
 365test_expect_success 'add --mirror=push' '
 366        mkdir mirror-push &&
 367        git init --bare mirror-push/public &&
 368        git init mirror-push/private &&
 369        (cd mirror-push/private &&
 370         test_commit one &&
 371         git remote add --mirror=push public ../public
 372        )
 373'
 374
 375test_expect_success 'push mirrors act as mirrors during push' '
 376        (cd mirror-push/private &&
 377         git branch new &&
 378         git branch -m master renamed &&
 379         git push public
 380        ) &&
 381        (cd mirror-push/private &&
 382         git rev-parse --verify refs/heads/new &&
 383         git rev-parse --verify refs/heads/renamed &&
 384         test_must_fail git rev-parse --verify refs/heads/master
 385        )
 386'
 387
 388test_expect_success 'push mirrors do not act as mirrors during fetch' '
 389        (cd mirror-push/public &&
 390         git branch -m renamed renamed2 &&
 391         git symbolic-ref HEAD refs/heads/renamed2
 392        ) &&
 393        (cd mirror-push/private &&
 394         git fetch public &&
 395         git rev-parse --verify refs/heads/renamed &&
 396         test_must_fail git rev-parse --verify refs/heads/renamed2
 397        )
 398'
 399
 400test_expect_success 'push mirrors do not allow you to specify refs' '
 401        git init mirror-push/track &&
 402        (cd mirror-push/track &&
 403         test_must_fail git remote add --mirror=push -t new public ../public
 404        )
 405'
 406
 407test_expect_success 'add alt && prune' '
 408        (mkdir alttst &&
 409         cd alttst &&
 410         git init &&
 411         git remote add -f origin ../one &&
 412         git config remote.alt.url ../one &&
 413         git config remote.alt.fetch "+refs/heads/*:refs/remotes/origin/*") &&
 414        (cd one &&
 415         git branch -m side side2) &&
 416        (cd alttst &&
 417         git rev-parse --verify refs/remotes/origin/side &&
 418         test_must_fail git rev-parse --verify refs/remotes/origin/side2 &&
 419         git fetch alt &&
 420         git remote prune alt &&
 421         test_must_fail git rev-parse --verify refs/remotes/origin/side &&
 422         git rev-parse --verify refs/remotes/origin/side2)
 423'
 424
 425cat >test/expect <<\EOF
 426some-tag
 427EOF
 428
 429test_expect_success 'add with reachable tags (default)' '
 430        (cd one &&
 431         >foobar &&
 432         git add foobar &&
 433         git commit -m "Foobar" &&
 434         git tag -a -m "Foobar tag" foobar-tag &&
 435         git reset --hard HEAD~1 &&
 436         git tag -a -m "Some tag" some-tag) &&
 437        (mkdir add-tags &&
 438         cd add-tags &&
 439         git init &&
 440         git remote add -f origin ../one &&
 441         git tag -l some-tag >../test/output &&
 442         git tag -l foobar-tag >>../test/output &&
 443         test_must_fail git config remote.origin.tagopt) &&
 444        test_cmp test/expect test/output
 445'
 446
 447cat >test/expect <<\EOF
 448some-tag
 449foobar-tag
 450--tags
 451EOF
 452
 453test_expect_success 'add --tags' '
 454        (rm -rf add-tags &&
 455         mkdir add-tags &&
 456         cd add-tags &&
 457         git init &&
 458         git remote add -f --tags origin ../one &&
 459         git tag -l some-tag >../test/output &&
 460         git tag -l foobar-tag >>../test/output &&
 461         git config remote.origin.tagopt >>../test/output) &&
 462        test_cmp test/expect test/output
 463'
 464
 465cat >test/expect <<\EOF
 466--no-tags
 467EOF
 468
 469test_expect_success 'add --no-tags' '
 470        (rm -rf add-tags &&
 471         mkdir add-no-tags &&
 472         cd add-no-tags &&
 473         git init &&
 474         git remote add -f --no-tags origin ../one &&
 475         git tag -l some-tag >../test/output &&
 476         git tag -l foobar-tag >../test/output &&
 477         git config remote.origin.tagopt >>../test/output) &&
 478        (cd one &&
 479         git tag -d some-tag foobar-tag) &&
 480        test_cmp test/expect test/output
 481'
 482
 483test_expect_success 'reject --no-no-tags' '
 484        (cd add-no-tags &&
 485         test_must_fail git remote add -f --no-no-tags neworigin ../one)
 486'
 487
 488cat > one/expect << EOF
 489  apis/master
 490  apis/side
 491  drosophila/another
 492  drosophila/master
 493  drosophila/side
 494EOF
 495
 496test_expect_success 'update' '
 497
 498        (cd one &&
 499         git remote add drosophila ../two &&
 500         git remote add apis ../mirror &&
 501         git remote update &&
 502         git branch -r > output &&
 503         test_cmp expect output)
 504
 505'
 506
 507cat > one/expect << EOF
 508  drosophila/another
 509  drosophila/master
 510  drosophila/side
 511  manduca/master
 512  manduca/side
 513  megaloprepus/master
 514  megaloprepus/side
 515EOF
 516
 517test_expect_success 'update with arguments' '
 518
 519        (cd one &&
 520         for b in $(git branch -r)
 521         do
 522                git branch -r -d $b || break
 523         done &&
 524         git remote add manduca ../mirror &&
 525         git remote add megaloprepus ../mirror &&
 526         git config remotes.phobaeticus "drosophila megaloprepus" &&
 527         git config remotes.titanus manduca &&
 528         git remote update phobaeticus titanus &&
 529         git branch -r > output &&
 530         test_cmp expect output)
 531
 532'
 533
 534test_expect_success 'update --prune' '
 535
 536        (cd one &&
 537         git branch -m side2 side3) &&
 538        (cd test &&
 539         git remote update --prune &&
 540         (cd ../one && git branch -m side3 side2) &&
 541         git rev-parse refs/remotes/origin/side3 &&
 542         test_must_fail git rev-parse refs/remotes/origin/side2)
 543'
 544
 545cat > one/expect << EOF
 546  apis/master
 547  apis/side
 548  manduca/master
 549  manduca/side
 550  megaloprepus/master
 551  megaloprepus/side
 552EOF
 553
 554test_expect_success 'update default' '
 555
 556        (cd one &&
 557         for b in $(git branch -r)
 558         do
 559                git branch -r -d $b || break
 560         done &&
 561         git config remote.drosophila.skipDefaultUpdate true &&
 562         git remote update default &&
 563         git branch -r > output &&
 564         test_cmp expect output)
 565
 566'
 567
 568cat > one/expect << EOF
 569  drosophila/another
 570  drosophila/master
 571  drosophila/side
 572EOF
 573
 574test_expect_success 'update default (overridden, with funny whitespace)' '
 575
 576        (cd one &&
 577         for b in $(git branch -r)
 578         do
 579                git branch -r -d $b || break
 580         done &&
 581         git config remotes.default "$(printf "\t drosophila  \n")" &&
 582         git remote update default &&
 583         git branch -r > output &&
 584         test_cmp expect output)
 585
 586'
 587
 588test_expect_success 'update (with remotes.default defined)' '
 589
 590        (cd one &&
 591         for b in $(git branch -r)
 592         do
 593                git branch -r -d $b || break
 594         done &&
 595         git config remotes.default "drosophila" &&
 596         git remote update &&
 597         git branch -r > output &&
 598         test_cmp expect output)
 599
 600'
 601
 602test_expect_success '"remote show" does not show symbolic refs' '
 603
 604        git clone one three &&
 605        (cd three &&
 606         git remote show origin > output &&
 607         ! grep "^ *HEAD$" < output &&
 608         ! grep -i stale < output)
 609
 610'
 611
 612test_expect_success 'reject adding remote with an invalid name' '
 613
 614        test_must_fail git remote add some:url desired-name
 615
 616'
 617
 618# The first three test if the tracking branches are properly renamed,
 619# the last two ones check if the config is updated.
 620
 621test_expect_success 'rename a remote' '
 622
 623        git clone one four &&
 624        (cd four &&
 625         git remote rename origin upstream &&
 626         rmdir .git/refs/remotes/origin &&
 627         test "$(git symbolic-ref refs/remotes/upstream/HEAD)" = "refs/remotes/upstream/master" &&
 628         test "$(git rev-parse upstream/master)" = "$(git rev-parse master)" &&
 629         test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" &&
 630         test "$(git config branch.master.remote)" = "upstream")
 631
 632'
 633
 634test_expect_success 'rename does not update a non-default fetch refspec' '
 635
 636        git clone one four.one &&
 637        (cd four.one &&
 638         git config remote.origin.fetch +refs/heads/*:refs/heads/origin/* &&
 639         git remote rename origin upstream &&
 640         test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/heads/origin/*")
 641
 642'
 643
 644test_expect_success 'rename a remote with name part of fetch spec' '
 645
 646        git clone one four.two &&
 647        (cd four.two &&
 648         git remote rename origin remote &&
 649         git remote rename remote upstream &&
 650         test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*")
 651
 652'
 653
 654test_expect_success 'rename a remote with name prefix of other remote' '
 655
 656        git clone one four.three &&
 657        (cd four.three &&
 658         git remote add o git://example.com/repo.git &&
 659         git remote rename o upstream &&
 660         test "$(git rev-parse origin/master)" = "$(git rev-parse master)")
 661
 662'
 663
 664cat > remotes_origin << EOF
 665URL: $(pwd)/one
 666Push: refs/heads/master:refs/heads/upstream
 667Pull: refs/heads/master:refs/heads/origin
 668EOF
 669
 670test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' '
 671        git clone one five &&
 672        origin_url=$(pwd)/one &&
 673        (cd five &&
 674         git remote rm origin &&
 675         mkdir -p .git/remotes &&
 676         cat ../remotes_origin > .git/remotes/origin &&
 677         git remote rename origin origin &&
 678         ! test -f .git/remotes/origin &&
 679         test "$(git config remote.origin.url)" = "$origin_url" &&
 680         test "$(git config remote.origin.push)" = "refs/heads/master:refs/heads/upstream" &&
 681         test "$(git config remote.origin.fetch)" = "refs/heads/master:refs/heads/origin")
 682'
 683
 684test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
 685        git clone one six &&
 686        origin_url=$(pwd)/one &&
 687        (cd six &&
 688         git remote rm origin &&
 689         echo "$origin_url" > .git/branches/origin &&
 690         git remote rename origin origin &&
 691         ! test -f .git/branches/origin &&
 692         test "$(git config remote.origin.url)" = "$origin_url" &&
 693         test "$(git config remote.origin.fetch)" = "refs/heads/master:refs/heads/origin")
 694'
 695
 696test_expect_success 'remote prune to cause a dangling symref' '
 697        git clone one seven &&
 698        (
 699                cd one &&
 700                git checkout side2 &&
 701                git branch -D master
 702        ) &&
 703        (
 704                cd seven &&
 705                git remote prune origin
 706        ) >err 2>&1 &&
 707        grep "has become dangling" err &&
 708
 709        : And the dangling symref will not cause other annoying errors &&
 710        (
 711                cd seven &&
 712                git branch -a
 713        ) 2>err &&
 714        ! grep "points nowhere" err &&
 715        (
 716                cd seven &&
 717                test_must_fail git branch nomore origin
 718        ) 2>err &&
 719        grep "dangling symref" err
 720'
 721
 722test_expect_success 'show empty remote' '
 723
 724        test_create_repo empty &&
 725        git clone empty empty-clone &&
 726        (
 727                cd empty-clone &&
 728                git remote show origin
 729        )
 730'
 731
 732test_expect_success 'remote set-branches requires a remote' '
 733        test_must_fail git remote set-branches &&
 734        test_must_fail git remote set-branches --add
 735'
 736
 737test_expect_success 'remote set-branches' '
 738        echo "+refs/heads/*:refs/remotes/scratch/*" >expect.initial &&
 739        sort <<-\EOF >expect.add &&
 740        +refs/heads/*:refs/remotes/scratch/*
 741        +refs/heads/other:refs/remotes/scratch/other
 742        EOF
 743        sort <<-\EOF >expect.replace &&
 744        +refs/heads/maint:refs/remotes/scratch/maint
 745        +refs/heads/master:refs/remotes/scratch/master
 746        +refs/heads/next:refs/remotes/scratch/next
 747        EOF
 748        sort <<-\EOF >expect.add-two &&
 749        +refs/heads/maint:refs/remotes/scratch/maint
 750        +refs/heads/master:refs/remotes/scratch/master
 751        +refs/heads/next:refs/remotes/scratch/next
 752        +refs/heads/pu:refs/remotes/scratch/pu
 753        +refs/heads/t/topic:refs/remotes/scratch/t/topic
 754        EOF
 755        sort <<-\EOF >expect.setup-ffonly &&
 756        refs/heads/master:refs/remotes/scratch/master
 757        +refs/heads/next:refs/remotes/scratch/next
 758        EOF
 759        sort <<-\EOF >expect.respect-ffonly &&
 760        refs/heads/master:refs/remotes/scratch/master
 761        +refs/heads/next:refs/remotes/scratch/next
 762        +refs/heads/pu:refs/remotes/scratch/pu
 763        EOF
 764
 765        git clone .git/ setbranches &&
 766        (
 767                cd setbranches &&
 768                git remote rename origin scratch &&
 769                git config --get-all remote.scratch.fetch >config-result &&
 770                sort <config-result >../actual.initial &&
 771
 772                git remote set-branches scratch --add other &&
 773                git config --get-all remote.scratch.fetch >config-result &&
 774                sort <config-result >../actual.add &&
 775
 776                git remote set-branches scratch maint master next &&
 777                git config --get-all remote.scratch.fetch >config-result &&
 778                sort <config-result >../actual.replace &&
 779
 780                git remote set-branches --add scratch pu t/topic &&
 781                git config --get-all remote.scratch.fetch >config-result &&
 782                sort <config-result >../actual.add-two &&
 783
 784                git config --unset-all remote.scratch.fetch &&
 785                git config remote.scratch.fetch \
 786                        refs/heads/master:refs/remotes/scratch/master &&
 787                git config --add remote.scratch.fetch \
 788                        +refs/heads/next:refs/remotes/scratch/next &&
 789                git config --get-all remote.scratch.fetch >config-result &&
 790                sort <config-result >../actual.setup-ffonly &&
 791
 792                git remote set-branches --add scratch pu &&
 793                git config --get-all remote.scratch.fetch >config-result &&
 794                sort <config-result >../actual.respect-ffonly
 795        ) &&
 796        test_cmp expect.initial actual.initial &&
 797        test_cmp expect.add actual.add &&
 798        test_cmp expect.replace actual.replace &&
 799        test_cmp expect.add-two actual.add-two &&
 800        test_cmp expect.setup-ffonly actual.setup-ffonly &&
 801        test_cmp expect.respect-ffonly actual.respect-ffonly
 802'
 803
 804test_expect_success 'remote set-branches with --mirror' '
 805        echo "+refs/*:refs/*" >expect.initial &&
 806        echo "+refs/heads/master:refs/heads/master" >expect.replace &&
 807        git clone --mirror .git/ setbranches-mirror &&
 808        (
 809                cd setbranches-mirror &&
 810                git remote rename origin scratch &&
 811                git config --get-all remote.scratch.fetch >../actual.initial &&
 812
 813                git remote set-branches scratch heads/master &&
 814                git config --get-all remote.scratch.fetch >../actual.replace
 815        ) &&
 816        test_cmp expect.initial actual.initial &&
 817        test_cmp expect.replace actual.replace
 818'
 819
 820test_expect_success 'new remote' '
 821        git remote add someremote foo &&
 822        echo foo >expect &&
 823        git config --get-all remote.someremote.url >actual &&
 824        cmp expect actual
 825'
 826
 827test_expect_success 'remote set-url bar' '
 828        git remote set-url someremote bar &&
 829        echo bar >expect &&
 830        git config --get-all remote.someremote.url >actual &&
 831        cmp expect actual
 832'
 833
 834test_expect_success 'remote set-url baz bar' '
 835        git remote set-url someremote baz bar &&
 836        echo baz >expect &&
 837        git config --get-all remote.someremote.url >actual &&
 838        cmp expect actual
 839'
 840
 841test_expect_success 'remote set-url zot bar' '
 842        test_must_fail git remote set-url someremote zot bar &&
 843        echo baz >expect &&
 844        git config --get-all remote.someremote.url >actual &&
 845        cmp expect actual
 846'
 847
 848test_expect_success 'remote set-url --push zot baz' '
 849        test_must_fail git remote set-url --push someremote zot baz &&
 850        echo "YYY" >expect &&
 851        echo baz >>expect &&
 852        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 853        echo "YYY" >>actual &&
 854        git config --get-all remote.someremote.url >>actual &&
 855        cmp expect actual
 856'
 857
 858test_expect_success 'remote set-url --push zot' '
 859        git remote set-url --push someremote zot &&
 860        echo zot >expect &&
 861        echo "YYY" >>expect &&
 862        echo baz >>expect &&
 863        git config --get-all remote.someremote.pushurl >actual &&
 864        echo "YYY" >>actual &&
 865        git config --get-all remote.someremote.url >>actual &&
 866        cmp expect actual
 867'
 868
 869test_expect_success 'remote set-url --push qux zot' '
 870        git remote set-url --push someremote qux zot &&
 871        echo qux >expect &&
 872        echo "YYY" >>expect &&
 873        echo baz >>expect &&
 874        git config --get-all remote.someremote.pushurl >actual &&
 875        echo "YYY" >>actual &&
 876        git config --get-all remote.someremote.url >>actual &&
 877        cmp expect actual
 878'
 879
 880test_expect_success 'remote set-url --push foo qu+x' '
 881        git remote set-url --push someremote foo qu+x &&
 882        echo foo >expect &&
 883        echo "YYY" >>expect &&
 884        echo baz >>expect &&
 885        git config --get-all remote.someremote.pushurl >actual &&
 886        echo "YYY" >>actual &&
 887        git config --get-all remote.someremote.url >>actual &&
 888        cmp expect actual
 889'
 890
 891test_expect_success 'remote set-url --push --add aaa' '
 892        git remote set-url --push --add someremote aaa &&
 893        echo foo >expect &&
 894        echo aaa >>expect &&
 895        echo "YYY" >>expect &&
 896        echo baz >>expect &&
 897        git config --get-all remote.someremote.pushurl >actual &&
 898        echo "YYY" >>actual &&
 899        git config --get-all remote.someremote.url >>actual &&
 900        cmp expect actual
 901'
 902
 903test_expect_success 'remote set-url --push bar aaa' '
 904        git remote set-url --push someremote bar aaa &&
 905        echo foo >expect &&
 906        echo bar >>expect &&
 907        echo "YYY" >>expect &&
 908        echo baz >>expect &&
 909        git config --get-all remote.someremote.pushurl >actual &&
 910        echo "YYY" >>actual &&
 911        git config --get-all remote.someremote.url >>actual &&
 912        cmp expect actual
 913'
 914
 915test_expect_success 'remote set-url --push --delete bar' '
 916        git remote set-url --push --delete someremote bar &&
 917        echo foo >expect &&
 918        echo "YYY" >>expect &&
 919        echo baz >>expect &&
 920        git config --get-all remote.someremote.pushurl >actual &&
 921        echo "YYY" >>actual &&
 922        git config --get-all remote.someremote.url >>actual &&
 923        cmp expect actual
 924'
 925
 926test_expect_success 'remote set-url --push --delete foo' '
 927        git remote set-url --push --delete someremote foo &&
 928        echo "YYY" >expect &&
 929        echo baz >>expect &&
 930        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 931        echo "YYY" >>actual &&
 932        git config --get-all remote.someremote.url >>actual &&
 933        cmp expect actual
 934'
 935
 936test_expect_success 'remote set-url --add bbb' '
 937        git remote set-url --add someremote bbb &&
 938        echo "YYY" >expect &&
 939        echo baz >>expect &&
 940        echo bbb >>expect &&
 941        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 942        echo "YYY" >>actual &&
 943        git config --get-all remote.someremote.url >>actual &&
 944        cmp expect actual
 945'
 946
 947test_expect_success 'remote set-url --delete .*' '
 948        test_must_fail git remote set-url --delete someremote .\* &&
 949        echo "YYY" >expect &&
 950        echo baz >>expect &&
 951        echo bbb >>expect &&
 952        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 953        echo "YYY" >>actual &&
 954        git config --get-all remote.someremote.url >>actual &&
 955        cmp expect actual
 956'
 957
 958test_expect_success 'remote set-url --delete bbb' '
 959        git remote set-url --delete someremote bbb &&
 960        echo "YYY" >expect &&
 961        echo baz >>expect &&
 962        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 963        echo "YYY" >>actual &&
 964        git config --get-all remote.someremote.url >>actual &&
 965        cmp expect actual
 966'
 967
 968test_expect_success 'remote set-url --delete baz' '
 969        test_must_fail git remote set-url --delete someremote baz &&
 970        echo "YYY" >expect &&
 971        echo baz >>expect &&
 972        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 973        echo "YYY" >>actual &&
 974        git config --get-all remote.someremote.url >>actual &&
 975        cmp expect actual
 976'
 977
 978test_expect_success 'remote set-url --add ccc' '
 979        git remote set-url --add someremote ccc &&
 980        echo "YYY" >expect &&
 981        echo baz >>expect &&
 982        echo ccc >>expect &&
 983        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 984        echo "YYY" >>actual &&
 985        git config --get-all remote.someremote.url >>actual &&
 986        cmp expect actual
 987'
 988
 989test_expect_success 'remote set-url --delete baz' '
 990        git remote set-url --delete someremote baz &&
 991        echo "YYY" >expect &&
 992        echo ccc >>expect &&
 993        test_must_fail git config --get-all remote.someremote.pushurl >actual &&
 994        echo "YYY" >>actual &&
 995        git config --get-all remote.someremote.url >>actual &&
 996        cmp expect actual
 997'
 998
 999test_done