t / t3200-branch.shon commit Documentation/everyday: match undefline with the text (f3f38c7)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Amos Waterland
   4#
   5
   6test_description='git branch assorted tests'
   7
   8. ./test-lib.sh
   9
  10test_expect_success 'prepare a trivial repository' '
  11        echo Hello >A &&
  12        git update-index --add A &&
  13        git commit -m "Initial commit." &&
  14        echo World >>A &&
  15        git update-index --add A &&
  16        git commit -m "Second commit." &&
  17        HEAD=$(git rev-parse --verify HEAD)
  18'
  19
  20test_expect_success 'git branch --help should not have created a bogus branch' '
  21        test_might_fail git branch --man --help </dev/null >/dev/null 2>&1 &&
  22        test_path_is_missing .git/refs/heads/--help
  23'
  24
  25test_expect_success 'branch -h in broken repository' '
  26        mkdir broken &&
  27        (
  28                cd broken &&
  29                git init &&
  30                >.git/refs/heads/master &&
  31                test_expect_code 129 git branch -h >usage 2>&1
  32        ) &&
  33        test_i18ngrep "[Uu]sage" broken/usage
  34'
  35
  36test_expect_success 'git branch abc should create a branch' '
  37        git branch abc && test_path_is_file .git/refs/heads/abc
  38'
  39
  40test_expect_success 'git branch a/b/c should create a branch' '
  41        git branch a/b/c && test_path_is_file .git/refs/heads/a/b/c
  42'
  43
  44test_expect_success 'git branch HEAD should fail' '
  45        test_must_fail git branch HEAD
  46'
  47
  48cat >expect <<EOF
  49$_z40 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
  50EOF
  51test_expect_success 'git branch -l d/e/f should create a branch and a log' '
  52        GIT_COMMITTER_DATE="2005-05-26 23:30" \
  53        git branch -l d/e/f &&
  54        test_path_is_file .git/refs/heads/d/e/f &&
  55        test_path_is_file .git/logs/refs/heads/d/e/f &&
  56        test_cmp expect .git/logs/refs/heads/d/e/f
  57'
  58
  59test_expect_success 'git branch -d d/e/f should delete a branch and a log' '
  60        git branch -d d/e/f &&
  61        test_path_is_missing .git/refs/heads/d/e/f &&
  62        test_path_is_missing .git/logs/refs/heads/d/e/f
  63'
  64
  65test_expect_success 'git branch j/k should work after branch j has been deleted' '
  66        git branch j &&
  67        git branch -d j &&
  68        git branch j/k
  69'
  70
  71test_expect_success 'git branch l should work after branch l/m has been deleted' '
  72        git branch l/m &&
  73        git branch -d l/m &&
  74        git branch l
  75'
  76
  77test_expect_success 'git branch -m dumps usage' '
  78        test_expect_code 128 git branch -m 2>err &&
  79        test_i18ngrep "branch name required" err
  80'
  81
  82test_expect_success 'git branch -m m m/m should work' '
  83        git branch -l m &&
  84        git branch -m m m/m &&
  85        test_path_is_file .git/logs/refs/heads/m/m
  86'
  87
  88test_expect_success 'git branch -m n/n n should work' '
  89        git branch -l n/n &&
  90        git branch -m n/n n &&
  91        test_path_is_file .git/logs/refs/heads/n
  92'
  93
  94test_expect_success 'git branch -m o/o o should fail when o/p exists' '
  95        git branch o/o &&
  96        git branch o/p &&
  97        test_must_fail git branch -m o/o o
  98'
  99
 100test_expect_success 'git branch -m q r/q should fail when r exists' '
 101        git branch q &&
 102        git branch r &&
 103        test_must_fail git branch -m q r/q
 104'
 105
 106test_expect_success 'git branch -M foo bar should fail when bar is checked out' '
 107        git branch bar &&
 108        git checkout -b foo &&
 109        test_must_fail git branch -M bar foo
 110'
 111
 112test_expect_success 'git branch -M baz bam should succeed when baz is checked out' '
 113        git checkout -b baz &&
 114        git branch bam &&
 115        git branch -M baz bam
 116'
 117
 118test_expect_success 'git branch -M master should work when master is checked out' '
 119        git checkout master &&
 120        git branch -M master
 121'
 122
 123test_expect_success 'git branch -M master master should work when master is checked out' '
 124        git checkout master &&
 125        git branch -M master master
 126'
 127
 128test_expect_success 'git branch -M master2 master2 should work when master is checked out' '
 129        git checkout master &&
 130        git branch master2 &&
 131        git branch -M master2 master2
 132'
 133
 134test_expect_success 'git branch -v -d t should work' '
 135        git branch t &&
 136        test_path_is_file .git/refs/heads/t &&
 137        git branch -v -d t &&
 138        test_path_is_missing .git/refs/heads/t
 139'
 140
 141test_expect_success 'git branch -v -m t s should work' '
 142        git branch t &&
 143        test_path_is_file .git/refs/heads/t &&
 144        git branch -v -m t s &&
 145        test_path_is_missing .git/refs/heads/t &&
 146        test_path_is_file .git/refs/heads/s &&
 147        git branch -d s
 148'
 149
 150test_expect_success 'git branch -m -d t s should fail' '
 151        git branch t &&
 152        test_path_is_file .git/refs/heads/t &&
 153        test_must_fail git branch -m -d t s &&
 154        git branch -d t &&
 155        test_path_is_missing .git/refs/heads/t
 156'
 157
 158test_expect_success 'git branch --list -d t should fail' '
 159        git branch t &&
 160        test_path_is_file .git/refs/heads/t &&
 161        test_must_fail git branch --list -d t &&
 162        git branch -d t &&
 163        test_path_is_missing .git/refs/heads/t
 164'
 165
 166test_expect_success 'git branch --column' '
 167        COLUMNS=81 git branch --column=column >actual &&
 168        cat >expected <<\EOF &&
 169  a/b/c     bam       foo       l       * master    n         o/p       r
 170  abc       bar       j/k       m/m       master2   o/o       q
 171EOF
 172        test_cmp expected actual
 173'
 174
 175test_expect_success 'git branch --column with an extremely long branch name' '
 176        long=this/is/a/part/of/long/branch/name &&
 177        long=z$long/$long/$long/$long &&
 178        test_when_finished "git branch -d $long" &&
 179        git branch $long &&
 180        COLUMNS=80 git branch --column=column >actual &&
 181        cat >expected <<EOF &&
 182  a/b/c
 183  abc
 184  bam
 185  bar
 186  foo
 187  j/k
 188  l
 189  m/m
 190* master
 191  master2
 192  n
 193  o/o
 194  o/p
 195  q
 196  r
 197  $long
 198EOF
 199        test_cmp expected actual
 200'
 201
 202test_expect_success 'git branch with column.*' '
 203        git config column.ui column &&
 204        git config column.branch "dense" &&
 205        COLUMNS=80 git branch >actual &&
 206        git config --unset column.branch &&
 207        git config --unset column.ui &&
 208        cat >expected <<\EOF &&
 209  a/b/c   bam   foo   l   * master    n     o/p   r
 210  abc     bar   j/k   m/m   master2   o/o   q
 211EOF
 212        test_cmp expected actual
 213'
 214
 215test_expect_success 'git branch --column -v should fail' '
 216        test_must_fail git branch --column -v
 217'
 218
 219test_expect_success 'git branch -v with column.ui ignored' '
 220        git config column.ui column &&
 221        COLUMNS=80 git branch -v | cut -c -10 | sed "s/ *$//" >actual &&
 222        git config --unset column.ui &&
 223        cat >expected <<\EOF &&
 224  a/b/c
 225  abc
 226  bam
 227  bar
 228  foo
 229  j/k
 230  l
 231  m/m
 232* master
 233  master2
 234  n
 235  o/o
 236  o/p
 237  q
 238  r
 239EOF
 240        test_cmp expected actual
 241'
 242
 243mv .git/config .git/config-saved
 244
 245test_expect_success 'git branch -m q q2 without config should succeed' '
 246        git branch -m q q2 &&
 247        git branch -m q2 q
 248'
 249
 250mv .git/config-saved .git/config
 251
 252git config branch.s/s.dummy Hello
 253
 254test_expect_success 'git branch -m s/s s should work when s/t is deleted' '
 255        git branch -l s/s &&
 256        test_path_is_file .git/logs/refs/heads/s/s &&
 257        git branch -l s/t &&
 258        test_path_is_file .git/logs/refs/heads/s/t &&
 259        git branch -d s/t &&
 260        git branch -m s/s s &&
 261        test_path_is_file .git/logs/refs/heads/s
 262'
 263
 264test_expect_success 'config information was renamed, too' '
 265        test $(git config branch.s.dummy) = Hello &&
 266        test_must_fail git config branch.s/s/dummy
 267'
 268
 269test_expect_success 'deleting a symref' '
 270        git branch target &&
 271        git symbolic-ref refs/heads/symref refs/heads/target &&
 272        echo "Deleted branch symref (was refs/heads/target)." >expect &&
 273        git branch -d symref >actual &&
 274        test_path_is_file .git/refs/heads/target &&
 275        test_path_is_missing .git/refs/heads/symref &&
 276        test_i18ncmp expect actual
 277'
 278
 279test_expect_success 'deleting a dangling symref' '
 280        git symbolic-ref refs/heads/dangling-symref nowhere &&
 281        test_path_is_file .git/refs/heads/dangling-symref &&
 282        echo "Deleted branch dangling-symref (was nowhere)." >expect &&
 283        git branch -d dangling-symref >actual &&
 284        test_path_is_missing .git/refs/heads/dangling-symref &&
 285        test_i18ncmp expect actual
 286'
 287
 288test_expect_success 'renaming a symref is not allowed' '
 289        git symbolic-ref refs/heads/master2 refs/heads/master &&
 290        test_must_fail git branch -m master2 master3 &&
 291        git symbolic-ref refs/heads/master2 &&
 292        test_path_is_file .git/refs/heads/master &&
 293        test_path_is_missing .git/refs/heads/master3
 294'
 295
 296test_expect_success SYMLINKS 'git branch -m u v should fail when the reflog for u is a symlink' '
 297        git branch -l u &&
 298        mv .git/logs/refs/heads/u real-u &&
 299        ln -s real-u .git/logs/refs/heads/u &&
 300        test_must_fail git branch -m u v
 301'
 302
 303test_expect_success 'test tracking setup via --track' '
 304        git config remote.local.url . &&
 305        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 306        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 307        git branch --track my1 local/master &&
 308        test $(git config branch.my1.remote) = local &&
 309        test $(git config branch.my1.merge) = refs/heads/master
 310'
 311
 312test_expect_success 'test tracking setup (non-wildcard, matching)' '
 313        git config remote.local.url . &&
 314        git config remote.local.fetch refs/heads/master:refs/remotes/local/master &&
 315        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 316        git branch --track my4 local/master &&
 317        test $(git config branch.my4.remote) = local &&
 318        test $(git config branch.my4.merge) = refs/heads/master
 319'
 320
 321test_expect_success 'tracking setup fails on non-matching refspec' '
 322        git config remote.local.url . &&
 323        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 324        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 325        git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
 326        test_must_fail git branch --track my5 local/master &&
 327        test_must_fail git config branch.my5.remote &&
 328        test_must_fail git config branch.my5.merge
 329'
 330
 331test_expect_success 'test tracking setup via config' '
 332        git config branch.autosetupmerge true &&
 333        git config remote.local.url . &&
 334        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 335        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 336        git branch my3 local/master &&
 337        test $(git config branch.my3.remote) = local &&
 338        test $(git config branch.my3.merge) = refs/heads/master
 339'
 340
 341test_expect_success 'test overriding tracking setup via --no-track' '
 342        git config branch.autosetupmerge true &&
 343        git config remote.local.url . &&
 344        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 345        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 346        git branch --no-track my2 local/master &&
 347        git config branch.autosetupmerge false &&
 348        ! test "$(git config branch.my2.remote)" = local &&
 349        ! test "$(git config branch.my2.merge)" = refs/heads/master
 350'
 351
 352test_expect_success 'no tracking without .fetch entries' '
 353        git config branch.autosetupmerge true &&
 354        git branch my6 s &&
 355        git config branch.autosetupmerge false &&
 356        test -z "$(git config branch.my6.remote)" &&
 357        test -z "$(git config branch.my6.merge)"
 358'
 359
 360test_expect_success 'test tracking setup via --track but deeper' '
 361        git config remote.local.url . &&
 362        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 363        (git show-ref -q refs/remotes/local/o/o || git fetch local) &&
 364        git branch --track my7 local/o/o &&
 365        test "$(git config branch.my7.remote)" = local &&
 366        test "$(git config branch.my7.merge)" = refs/heads/o/o
 367'
 368
 369test_expect_success 'test deleting branch deletes branch config' '
 370        git branch -d my7 &&
 371        test -z "$(git config branch.my7.remote)" &&
 372        test -z "$(git config branch.my7.merge)"
 373'
 374
 375test_expect_success 'test deleting branch without config' '
 376        git branch my7 s &&
 377        sha1=$(git rev-parse my7 | cut -c 1-7) &&
 378        echo "Deleted branch my7 (was $sha1)." >expect &&
 379        git branch -d my7 >actual 2>&1 &&
 380        test_i18ncmp expect actual
 381'
 382
 383test_expect_success 'test --track without .fetch entries' '
 384        git branch --track my8 &&
 385        test "$(git config branch.my8.remote)" &&
 386        test "$(git config branch.my8.merge)"
 387'
 388
 389test_expect_success 'branch from non-branch HEAD w/autosetupmerge=always' '
 390        git config branch.autosetupmerge always &&
 391        git branch my9 HEAD^ &&
 392        git config branch.autosetupmerge false
 393'
 394
 395test_expect_success 'branch from non-branch HEAD w/--track causes failure' '
 396        test_must_fail git branch --track my10 HEAD^
 397'
 398
 399test_expect_success 'branch from tag w/--track causes failure' '
 400        git tag foobar &&
 401        test_must_fail git branch --track my11 foobar
 402'
 403
 404test_expect_success '--set-upstream-to fails on multiple branches' '
 405        test_must_fail git branch --set-upstream-to master a b c
 406'
 407
 408test_expect_success '--set-upstream-to fails on detached HEAD' '
 409        git checkout HEAD^{} &&
 410        test_must_fail git branch --set-upstream-to master &&
 411        git checkout -
 412'
 413
 414test_expect_success '--set-upstream-to fails on a missing dst branch' '
 415        test_must_fail git branch --set-upstream-to master does-not-exist
 416'
 417
 418test_expect_success '--set-upstream-to fails on a missing src branch' '
 419        test_must_fail git branch --set-upstream-to does-not-exist master
 420'
 421
 422test_expect_success '--set-upstream-to fails on a non-ref' '
 423        test_must_fail git branch --set-upstream-to HEAD^{}
 424'
 425
 426test_expect_success 'use --set-upstream-to modify HEAD' '
 427        test_config branch.master.remote foo &&
 428        test_config branch.master.merge foo &&
 429        git branch my12 &&
 430        git branch --set-upstream-to my12 &&
 431        test "$(git config branch.master.remote)" = "." &&
 432        test "$(git config branch.master.merge)" = "refs/heads/my12"
 433'
 434
 435test_expect_success 'use --set-upstream-to modify a particular branch' '
 436        git branch my13 &&
 437        git branch --set-upstream-to master my13 &&
 438        test "$(git config branch.my13.remote)" = "." &&
 439        test "$(git config branch.my13.merge)" = "refs/heads/master"
 440'
 441
 442test_expect_success '--unset-upstream should fail if given a non-existent branch' '
 443        test_must_fail git branch --unset-upstream i-dont-exist
 444'
 445
 446test_expect_success 'test --unset-upstream on HEAD' '
 447        git branch my14 &&
 448        test_config branch.master.remote foo &&
 449        test_config branch.master.merge foo &&
 450        git branch --set-upstream-to my14 &&
 451        git branch --unset-upstream &&
 452        test_must_fail git config branch.master.remote &&
 453        test_must_fail git config branch.master.merge &&
 454        # fail for a branch without upstream set
 455        test_must_fail git branch --unset-upstream
 456'
 457
 458test_expect_success '--unset-upstream should fail on multiple branches' '
 459        test_must_fail git branch --unset-upstream a b c
 460'
 461
 462test_expect_success '--unset-upstream should fail on detached HEAD' '
 463        git checkout HEAD^{} &&
 464        test_must_fail git branch --unset-upstream &&
 465        git checkout -
 466'
 467
 468test_expect_success 'test --unset-upstream on a particular branch' '
 469        git branch my15 &&
 470        git branch --set-upstream-to master my14 &&
 471        git branch --unset-upstream my14 &&
 472        test_must_fail git config branch.my14.remote &&
 473        test_must_fail git config branch.my14.merge
 474'
 475
 476test_expect_success '--set-upstream shows message when creating a new branch that exists as remote-tracking' '
 477        git update-ref refs/remotes/origin/master HEAD &&
 478        git branch --set-upstream origin/master 2>actual &&
 479        test_when_finished git update-ref -d refs/remotes/origin/master &&
 480        test_when_finished git branch -d origin/master &&
 481        cat >expected <<EOF &&
 482The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to
 483
 484If you wanted to make '"'master'"' track '"'origin/master'"', do this:
 485
 486    git branch -d origin/master
 487    git branch --set-upstream-to origin/master
 488EOF
 489        test_cmp expected actual
 490'
 491
 492test_expect_success '--set-upstream with two args only shows the deprecation message' '
 493        git branch --set-upstream master my13 2>actual &&
 494        test_when_finished git branch --unset-upstream master &&
 495        cat >expected <<EOF &&
 496The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to
 497EOF
 498        test_cmp expected actual
 499'
 500
 501test_expect_success '--set-upstream with one arg only shows the deprecation message if the branch existed' '
 502        git branch --set-upstream my13 2>actual &&
 503        test_when_finished git branch --unset-upstream my13 &&
 504        cat >expected <<EOF &&
 505The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to
 506EOF
 507        test_cmp expected actual
 508'
 509
 510test_expect_success '--set-upstream-to notices an error to set branch as own upstream' '
 511        git branch --set-upstream-to refs/heads/my13 my13 2>actual &&
 512        cat >expected <<-\EOF &&
 513        warning: Not setting branch my13 as its own upstream.
 514        EOF
 515        test_expect_code 1 git config branch.my13.remote &&
 516        test_expect_code 1 git config branch.my13.merge &&
 517        test_i18ncmp expected actual
 518'
 519
 520# Keep this test last, as it changes the current branch
 521cat >expect <<EOF
 522$_z40 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
 523EOF
 524test_expect_success 'git checkout -b g/h/i -l should create a branch and a log' '
 525        GIT_COMMITTER_DATE="2005-05-26 23:30" \
 526        git checkout -b g/h/i -l master &&
 527        test_path_is_file .git/refs/heads/g/h/i &&
 528        test_path_is_file .git/logs/refs/heads/g/h/i &&
 529        test_cmp expect .git/logs/refs/heads/g/h/i
 530'
 531
 532test_expect_success 'checkout -b makes reflog by default' '
 533        git checkout master &&
 534        git config --unset core.logAllRefUpdates &&
 535        git checkout -b alpha &&
 536        git rev-parse --verify alpha@{0}
 537'
 538
 539test_expect_success 'checkout -b does not make reflog when core.logAllRefUpdates = false' '
 540        git checkout master &&
 541        git config core.logAllRefUpdates false &&
 542        git checkout -b beta &&
 543        test_must_fail git rev-parse --verify beta@{0}
 544'
 545
 546test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates = false' '
 547        git checkout master &&
 548        git checkout -lb gamma &&
 549        git config --unset core.logAllRefUpdates &&
 550        git rev-parse --verify gamma@{0}
 551'
 552
 553test_expect_success 'avoid ambiguous track' '
 554        git config branch.autosetupmerge true &&
 555        git config remote.ambi1.url lalala &&
 556        git config remote.ambi1.fetch refs/heads/lalala:refs/heads/master &&
 557        git config remote.ambi2.url lilili &&
 558        git config remote.ambi2.fetch refs/heads/lilili:refs/heads/master &&
 559        git branch all1 master &&
 560        test -z "$(git config branch.all1.merge)"
 561'
 562
 563test_expect_success 'autosetuprebase local on a tracked local branch' '
 564        git config remote.local.url . &&
 565        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 566        git config branch.autosetuprebase local &&
 567        (git show-ref -q refs/remotes/local/o || git fetch local) &&
 568        git branch mybase &&
 569        git branch --track myr1 mybase &&
 570        test "$(git config branch.myr1.remote)" = . &&
 571        test "$(git config branch.myr1.merge)" = refs/heads/mybase &&
 572        test "$(git config branch.myr1.rebase)" = true
 573'
 574
 575test_expect_success 'autosetuprebase always on a tracked local branch' '
 576        git config remote.local.url . &&
 577        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 578        git config branch.autosetuprebase always &&
 579        (git show-ref -q refs/remotes/local/o || git fetch local) &&
 580        git branch mybase2 &&
 581        git branch --track myr2 mybase &&
 582        test "$(git config branch.myr2.remote)" = . &&
 583        test "$(git config branch.myr2.merge)" = refs/heads/mybase &&
 584        test "$(git config branch.myr2.rebase)" = true
 585'
 586
 587test_expect_success 'autosetuprebase remote on a tracked local branch' '
 588        git config remote.local.url . &&
 589        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 590        git config branch.autosetuprebase remote &&
 591        (git show-ref -q refs/remotes/local/o || git fetch local) &&
 592        git branch mybase3 &&
 593        git branch --track myr3 mybase2 &&
 594        test "$(git config branch.myr3.remote)" = . &&
 595        test "$(git config branch.myr3.merge)" = refs/heads/mybase2 &&
 596        ! test "$(git config branch.myr3.rebase)" = true
 597'
 598
 599test_expect_success 'autosetuprebase never on a tracked local branch' '
 600        git config remote.local.url . &&
 601        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 602        git config branch.autosetuprebase never &&
 603        (git show-ref -q refs/remotes/local/o || git fetch local) &&
 604        git branch mybase4 &&
 605        git branch --track myr4 mybase2 &&
 606        test "$(git config branch.myr4.remote)" = . &&
 607        test "$(git config branch.myr4.merge)" = refs/heads/mybase2 &&
 608        ! test "$(git config branch.myr4.rebase)" = true
 609'
 610
 611test_expect_success 'autosetuprebase local on a tracked remote branch' '
 612        git config remote.local.url . &&
 613        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 614        git config branch.autosetuprebase local &&
 615        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 616        git branch --track myr5 local/master &&
 617        test "$(git config branch.myr5.remote)" = local &&
 618        test "$(git config branch.myr5.merge)" = refs/heads/master &&
 619        ! test "$(git config branch.myr5.rebase)" = true
 620'
 621
 622test_expect_success 'autosetuprebase never on a tracked remote branch' '
 623        git config remote.local.url . &&
 624        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 625        git config branch.autosetuprebase never &&
 626        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 627        git branch --track myr6 local/master &&
 628        test "$(git config branch.myr6.remote)" = local &&
 629        test "$(git config branch.myr6.merge)" = refs/heads/master &&
 630        ! test "$(git config branch.myr6.rebase)" = true
 631'
 632
 633test_expect_success 'autosetuprebase remote on a tracked remote branch' '
 634        git config remote.local.url . &&
 635        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 636        git config branch.autosetuprebase remote &&
 637        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 638        git branch --track myr7 local/master &&
 639        test "$(git config branch.myr7.remote)" = local &&
 640        test "$(git config branch.myr7.merge)" = refs/heads/master &&
 641        test "$(git config branch.myr7.rebase)" = true
 642'
 643
 644test_expect_success 'autosetuprebase always on a tracked remote branch' '
 645        git config remote.local.url . &&
 646        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 647        git config branch.autosetuprebase remote &&
 648        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 649        git branch --track myr8 local/master &&
 650        test "$(git config branch.myr8.remote)" = local &&
 651        test "$(git config branch.myr8.merge)" = refs/heads/master &&
 652        test "$(git config branch.myr8.rebase)" = true
 653'
 654
 655test_expect_success 'autosetuprebase unconfigured on a tracked remote branch' '
 656        git config --unset branch.autosetuprebase &&
 657        git config remote.local.url . &&
 658        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 659        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 660        git branch --track myr9 local/master &&
 661        test "$(git config branch.myr9.remote)" = local &&
 662        test "$(git config branch.myr9.merge)" = refs/heads/master &&
 663        test "z$(git config branch.myr9.rebase)" = z
 664'
 665
 666test_expect_success 'autosetuprebase unconfigured on a tracked local branch' '
 667        git config remote.local.url . &&
 668        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 669        (git show-ref -q refs/remotes/local/o || git fetch local) &&
 670        git branch mybase10 &&
 671        git branch --track myr10 mybase2 &&
 672        test "$(git config branch.myr10.remote)" = . &&
 673        test "$(git config branch.myr10.merge)" = refs/heads/mybase2 &&
 674        test "z$(git config branch.myr10.rebase)" = z
 675'
 676
 677test_expect_success 'autosetuprebase unconfigured on untracked local branch' '
 678        git config remote.local.url . &&
 679        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 680        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 681        git branch --no-track myr11 mybase2 &&
 682        test "z$(git config branch.myr11.remote)" = z &&
 683        test "z$(git config branch.myr11.merge)" = z &&
 684        test "z$(git config branch.myr11.rebase)" = z
 685'
 686
 687test_expect_success 'autosetuprebase unconfigured on untracked remote branch' '
 688        git config remote.local.url . &&
 689        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 690        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 691        git branch --no-track myr12 local/master &&
 692        test "z$(git config branch.myr12.remote)" = z &&
 693        test "z$(git config branch.myr12.merge)" = z &&
 694        test "z$(git config branch.myr12.rebase)" = z
 695'
 696
 697test_expect_success 'autosetuprebase never on an untracked local branch' '
 698        git config branch.autosetuprebase never &&
 699        git config remote.local.url . &&
 700        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 701        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 702        git branch --no-track myr13 mybase2 &&
 703        test "z$(git config branch.myr13.remote)" = z &&
 704        test "z$(git config branch.myr13.merge)" = z &&
 705        test "z$(git config branch.myr13.rebase)" = z
 706'
 707
 708test_expect_success 'autosetuprebase local on an untracked local branch' '
 709        git config branch.autosetuprebase local &&
 710        git config remote.local.url . &&
 711        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 712        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 713        git branch --no-track myr14 mybase2 &&
 714        test "z$(git config branch.myr14.remote)" = z &&
 715        test "z$(git config branch.myr14.merge)" = z &&
 716        test "z$(git config branch.myr14.rebase)" = z
 717'
 718
 719test_expect_success 'autosetuprebase remote on an untracked local branch' '
 720        git config branch.autosetuprebase remote &&
 721        git config remote.local.url . &&
 722        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 723        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 724        git branch --no-track myr15 mybase2 &&
 725        test "z$(git config branch.myr15.remote)" = z &&
 726        test "z$(git config branch.myr15.merge)" = z &&
 727        test "z$(git config branch.myr15.rebase)" = z
 728'
 729
 730test_expect_success 'autosetuprebase always on an untracked local branch' '
 731        git config branch.autosetuprebase always &&
 732        git config remote.local.url . &&
 733        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 734        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 735        git branch --no-track myr16 mybase2 &&
 736        test "z$(git config branch.myr16.remote)" = z &&
 737        test "z$(git config branch.myr16.merge)" = z &&
 738        test "z$(git config branch.myr16.rebase)" = z
 739'
 740
 741test_expect_success 'autosetuprebase never on an untracked remote branch' '
 742        git config branch.autosetuprebase never &&
 743        git config remote.local.url . &&
 744        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 745        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 746        git branch --no-track myr17 local/master &&
 747        test "z$(git config branch.myr17.remote)" = z &&
 748        test "z$(git config branch.myr17.merge)" = z &&
 749        test "z$(git config branch.myr17.rebase)" = z
 750'
 751
 752test_expect_success 'autosetuprebase local on an untracked remote branch' '
 753        git config branch.autosetuprebase local &&
 754        git config remote.local.url . &&
 755        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 756        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 757        git branch --no-track myr18 local/master &&
 758        test "z$(git config branch.myr18.remote)" = z &&
 759        test "z$(git config branch.myr18.merge)" = z &&
 760        test "z$(git config branch.myr18.rebase)" = z
 761'
 762
 763test_expect_success 'autosetuprebase remote on an untracked remote branch' '
 764        git config branch.autosetuprebase remote &&
 765        git config remote.local.url . &&
 766        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 767        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 768        git branch --no-track myr19 local/master &&
 769        test "z$(git config branch.myr19.remote)" = z &&
 770        test "z$(git config branch.myr19.merge)" = z &&
 771        test "z$(git config branch.myr19.rebase)" = z
 772'
 773
 774test_expect_success 'autosetuprebase always on an untracked remote branch' '
 775        git config branch.autosetuprebase always &&
 776        git config remote.local.url . &&
 777        git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
 778        (git show-ref -q refs/remotes/local/master || git fetch local) &&
 779        git branch --no-track myr20 local/master &&
 780        test "z$(git config branch.myr20.remote)" = z &&
 781        test "z$(git config branch.myr20.merge)" = z &&
 782        test "z$(git config branch.myr20.rebase)" = z
 783'
 784
 785test_expect_success 'autosetuprebase always on detached HEAD' '
 786        git config branch.autosetupmerge always &&
 787        test_when_finished git checkout master &&
 788        git checkout HEAD^0 &&
 789        git branch my11 &&
 790        test -z "$(git config branch.my11.remote)" &&
 791        test -z "$(git config branch.my11.merge)"
 792'
 793
 794test_expect_success 'detect misconfigured autosetuprebase (bad value)' '
 795        git config branch.autosetuprebase garbage &&
 796        test_must_fail git branch
 797'
 798
 799test_expect_success 'detect misconfigured autosetuprebase (no value)' '
 800        git config --unset branch.autosetuprebase &&
 801        echo "[branch] autosetuprebase" >>.git/config &&
 802        test_must_fail git branch &&
 803        git config --unset branch.autosetuprebase
 804'
 805
 806test_expect_success 'attempt to delete a branch without base and unmerged to HEAD' '
 807        git checkout my9 &&
 808        git config --unset branch.my8.merge &&
 809        test_must_fail git branch -d my8
 810'
 811
 812test_expect_success 'attempt to delete a branch merged to its base' '
 813        # we are on my9 which is the initial commit; traditionally
 814        # we would not have allowed deleting my8 that is not merged
 815        # to my9, but it is set to track master that already has my8
 816        git config branch.my8.merge refs/heads/master &&
 817        git branch -d my8
 818'
 819
 820test_expect_success 'attempt to delete a branch merged to its base' '
 821        git checkout master &&
 822        echo Third >>A &&
 823        git commit -m "Third commit" A &&
 824        git branch -t my10 my9 &&
 825        git branch -f my10 HEAD^ &&
 826        # we are on master which is at the third commit, and my10
 827        # is behind us, so traditionally we would have allowed deleting
 828        # it; but my10 is set to track my9 that is further behind.
 829        test_must_fail git branch -d my10
 830'
 831
 832test_expect_success 'use set-upstream on the current branch' '
 833        git checkout master &&
 834        git --bare init myupstream.git &&
 835        git push myupstream.git master:refs/heads/frotz &&
 836        git remote add origin myupstream.git &&
 837        git fetch &&
 838        git branch --set-upstream master origin/frotz &&
 839
 840        test "z$(git config branch.master.remote)" = "zorigin" &&
 841        test "z$(git config branch.master.merge)" = "zrefs/heads/frotz"
 842
 843'
 844
 845test_expect_success 'use --edit-description' '
 846        write_script editor <<-\EOF &&
 847                echo "New contents" >"$1"
 848        EOF
 849        EDITOR=./editor git branch --edit-description &&
 850                write_script editor <<-\EOF &&
 851                git stripspace -s <"$1" >"EDITOR_OUTPUT"
 852        EOF
 853        EDITOR=./editor git branch --edit-description &&
 854        echo "New contents" >expect &&
 855        test_cmp EDITOR_OUTPUT expect
 856'
 857
 858test_expect_success 'detect typo in branch name when using --edit-description' '
 859        write_script editor <<-\EOF &&
 860                echo "New contents" >"$1"
 861        EOF
 862        test_must_fail env EDITOR=./editor git branch --edit-description no-such-branch
 863'
 864
 865test_expect_success 'refuse --edit-description on unborn branch for now' '
 866        write_script editor <<-\EOF &&
 867                echo "New contents" >"$1"
 868        EOF
 869        git checkout --orphan unborn &&
 870        test_must_fail env EDITOR=./editor git branch --edit-description
 871'
 872
 873test_expect_success '--merged catches invalid object names' '
 874        test_must_fail git branch --merged 0000000000000000000000000000000000000000
 875'
 876
 877test_expect_success 'tracking with unexpected .fetch refspec' '
 878        rm -rf a b c d &&
 879        git init a &&
 880        (
 881                cd a &&
 882                test_commit a
 883        ) &&
 884        git init b &&
 885        (
 886                cd b &&
 887                test_commit b
 888        ) &&
 889        git init c &&
 890        (
 891                cd c &&
 892                test_commit c &&
 893                git remote add a ../a &&
 894                git remote add b ../b &&
 895                git fetch --all
 896        ) &&
 897        git init d &&
 898        (
 899                cd d &&
 900                git remote add c ../c &&
 901                git config remote.c.fetch "+refs/remotes/*:refs/remotes/*" &&
 902                git fetch c &&
 903                git branch --track local/a/master remotes/a/master &&
 904                test "$(git config branch.local/a/master.remote)" = "c" &&
 905                test "$(git config branch.local/a/master.merge)" = "refs/remotes/a/master" &&
 906                git rev-parse --verify a >expect &&
 907                git rev-parse --verify local/a/master >actual &&
 908                test_cmp expect actual
 909        )
 910'
 911
 912test_done