Merge branch 'dl/branch-cleanup' into master
[git] / t / t3200-branch.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Amos Waterland
4 #
5
6 test_description='git branch assorted tests'
7
8 . ./test-lib.sh
9 . "$TEST_DIRECTORY"/lib-rebase.sh
10
11 test_expect_success 'prepare a trivial repository' '
12         echo Hello >A &&
13         git update-index --add A &&
14         git commit -m "Initial commit." &&
15         echo World >>A &&
16         git update-index --add A &&
17         git commit -m "Second commit." &&
18         HEAD=$(git rev-parse --verify HEAD)
19 '
20
21 test_expect_success 'git branch --help should not have created a bogus branch' '
22         test_might_fail git branch --man --help </dev/null >/dev/null 2>&1 &&
23         test_path_is_missing .git/refs/heads/--help
24 '
25
26 test_expect_success 'branch -h in broken repository' '
27         mkdir broken &&
28         (
29                 cd broken &&
30                 git init &&
31                 >.git/refs/heads/master &&
32                 test_expect_code 129 git branch -h >usage 2>&1
33         ) &&
34         test_i18ngrep "[Uu]sage" broken/usage
35 '
36
37 test_expect_success 'git branch abc should create a branch' '
38         git branch abc && test_path_is_file .git/refs/heads/abc
39 '
40
41 test_expect_success 'git branch a/b/c should create a branch' '
42         git branch a/b/c && test_path_is_file .git/refs/heads/a/b/c
43 '
44
45 test_expect_success 'git branch mb master... should create a branch' '
46         git branch mb master... && test_path_is_file .git/refs/heads/mb
47 '
48
49 test_expect_success 'git branch HEAD should fail' '
50         test_must_fail git branch HEAD
51 '
52
53 cat >expect <<EOF
54 $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000     branch: Created from master
55 EOF
56 test_expect_success 'git branch --create-reflog d/e/f should create a branch and a log' '
57         GIT_COMMITTER_DATE="2005-05-26 23:30" \
58         git -c core.logallrefupdates=false branch --create-reflog d/e/f &&
59         test_path_is_file .git/refs/heads/d/e/f &&
60         test_path_is_file .git/logs/refs/heads/d/e/f &&
61         test_cmp expect .git/logs/refs/heads/d/e/f
62 '
63
64 test_expect_success 'git branch -d d/e/f should delete a branch and a log' '
65         git branch -d d/e/f &&
66         test_path_is_missing .git/refs/heads/d/e/f &&
67         test_must_fail git reflog exists refs/heads/d/e/f
68 '
69
70 test_expect_success 'git branch j/k should work after branch j has been deleted' '
71         git branch j &&
72         git branch -d j &&
73         git branch j/k
74 '
75
76 test_expect_success 'git branch l should work after branch l/m has been deleted' '
77         git branch l/m &&
78         git branch -d l/m &&
79         git branch l
80 '
81
82 test_expect_success 'git branch -m dumps usage' '
83         test_expect_code 128 git branch -m 2>err &&
84         test_i18ngrep "branch name required" err
85 '
86
87 test_expect_success 'git branch -m m broken_symref should work' '
88         test_when_finished "git branch -D broken_symref" &&
89         git branch --create-reflog m &&
90         git symbolic-ref refs/heads/broken_symref refs/heads/i_am_broken &&
91         git branch -m m broken_symref &&
92         git reflog exists refs/heads/broken_symref &&
93         test_must_fail git reflog exists refs/heads/i_am_broken
94 '
95
96 test_expect_success 'git branch -m m m/m should work' '
97         git branch --create-reflog m &&
98         git branch -m m m/m &&
99         git reflog exists refs/heads/m/m
100 '
101
102 test_expect_success 'git branch -m n/n n should work' '
103         git branch --create-reflog n/n &&
104         git branch -m n/n n &&
105         git reflog exists refs/heads/n
106 '
107
108 # The topmost entry in reflog for branch bbb is about branch creation.
109 # Hence, we compare bbb@{1} (instead of bbb@{0}) with aaa@{0}.
110
111 test_expect_success 'git branch -m bbb should rename checked out branch' '
112         test_when_finished git branch -D bbb &&
113         test_when_finished git checkout master &&
114         git checkout -b aaa &&
115         git commit --allow-empty -m "a new commit" &&
116         git rev-parse aaa@{0} >expect &&
117         git branch -m bbb &&
118         git rev-parse bbb@{1} >actual &&
119         test_cmp expect actual &&
120         git symbolic-ref HEAD >actual &&
121         echo refs/heads/bbb >expect &&
122         test_cmp expect actual
123 '
124
125 test_expect_success 'renaming checked out branch works with d/f conflict' '
126         test_when_finished "git branch -D foo/bar || git branch -D foo" &&
127         test_when_finished git checkout master &&
128         git checkout -b foo &&
129         git branch -m foo/bar &&
130         git symbolic-ref HEAD >actual &&
131         echo refs/heads/foo/bar >expect &&
132         test_cmp expect actual
133 '
134
135 test_expect_success 'git branch -m o/o o should fail when o/p exists' '
136         git branch o/o &&
137         git branch o/p &&
138         test_must_fail git branch -m o/o o
139 '
140
141 test_expect_success 'git branch -m o/q o/p should fail when o/p exists' '
142         git branch o/q &&
143         test_must_fail git branch -m o/q o/p
144 '
145
146 test_expect_success 'git branch -M o/q o/p should work when o/p exists' '
147         git branch -M o/q o/p
148 '
149
150 test_expect_success 'git branch -m -f o/q o/p should work when o/p exists' '
151         git branch o/q &&
152         git branch -m -f o/q o/p
153 '
154
155 test_expect_success 'git branch -m q r/q should fail when r exists' '
156         git branch q &&
157         git branch r &&
158         test_must_fail git branch -m q r/q
159 '
160
161 test_expect_success 'git branch -M foo bar should fail when bar is checked out' '
162         git branch bar &&
163         git checkout -b foo &&
164         test_must_fail git branch -M bar foo
165 '
166
167 test_expect_success 'git branch -M baz bam should succeed when baz is checked out' '
168         git checkout -b baz &&
169         git branch bam &&
170         git branch -M baz bam &&
171         test $(git rev-parse --abbrev-ref HEAD) = bam
172 '
173
174 test_expect_success 'git branch -M baz bam should add entries to .git/logs/HEAD' '
175         msg="Branch: renamed refs/heads/baz to refs/heads/bam" &&
176         grep " 0\{40\}.*$msg$" .git/logs/HEAD &&
177         grep "^0\{40\}.*$msg$" .git/logs/HEAD
178 '
179
180 test_expect_success 'git branch -M should leave orphaned HEAD alone' '
181         git init orphan &&
182         (
183                 cd orphan &&
184                 test_commit initial &&
185                 git checkout --orphan lonely &&
186                 grep lonely .git/HEAD &&
187                 test_path_is_missing .git/refs/head/lonely &&
188                 git branch -M master mistress &&
189                 grep lonely .git/HEAD
190         )
191 '
192
193 test_expect_success 'resulting reflog can be shown by log -g' '
194         oid=$(git rev-parse HEAD) &&
195         cat >expect <<-EOF &&
196         HEAD@{0} $oid $msg
197         HEAD@{2} $oid checkout: moving from foo to baz
198         EOF
199         git log -g --format="%gd %H %gs" -2 HEAD >actual &&
200         test_cmp expect actual
201 '
202
203 test_expect_success 'git branch -M baz bam should succeed when baz is checked out as linked working tree' '
204         git checkout master &&
205         git worktree add -b baz bazdir &&
206         git worktree add -f bazdir2 baz &&
207         git branch -M baz bam &&
208         test $(git -C bazdir rev-parse --abbrev-ref HEAD) = bam &&
209         test $(git -C bazdir2 rev-parse --abbrev-ref HEAD) = bam &&
210         rm -r bazdir bazdir2 &&
211         git worktree prune
212 '
213
214 test_expect_success 'git branch -M baz bam should succeed within a worktree in which baz is checked out' '
215         git checkout -b baz &&
216         git worktree add -f bazdir baz &&
217         (
218                 cd bazdir &&
219                 git branch -M baz bam &&
220                 test $(git rev-parse --abbrev-ref HEAD) = bam
221         ) &&
222         test $(git rev-parse --abbrev-ref HEAD) = bam &&
223         rm -r bazdir &&
224         git worktree prune
225 '
226
227 test_expect_success 'git branch -M master should work when master is checked out' '
228         git checkout master &&
229         git branch -M master
230 '
231
232 test_expect_success 'git branch -M master master should work when master is checked out' '
233         git checkout master &&
234         git branch -M master master
235 '
236
237 test_expect_success 'git branch -M master2 master2 should work when master is checked out' '
238         git checkout master &&
239         git branch master2 &&
240         git branch -M master2 master2
241 '
242
243 test_expect_success 'git branch -v -d t should work' '
244         git branch t &&
245         git rev-parse --verify refs/heads/t &&
246         git branch -v -d t &&
247         test_must_fail git rev-parse --verify refs/heads/t
248 '
249
250 test_expect_success 'git branch -v -m t s should work' '
251         git branch t &&
252         git rev-parse --verify refs/heads/t &&
253         git branch -v -m t s &&
254         test_must_fail git rev-parse --verify refs/heads/t &&
255         git rev-parse --verify refs/heads/s &&
256         git branch -d s
257 '
258
259 test_expect_success 'git branch -m -d t s should fail' '
260         git branch t &&
261         git rev-parse refs/heads/t &&
262         test_must_fail git branch -m -d t s &&
263         git branch -d t &&
264         test_must_fail git rev-parse refs/heads/t
265 '
266
267 test_expect_success 'git branch --list -d t should fail' '
268         git branch t &&
269         git rev-parse refs/heads/t &&
270         test_must_fail git branch --list -d t &&
271         git branch -d t &&
272         test_must_fail git rev-parse refs/heads/t
273 '
274
275 test_expect_success 'deleting checked-out branch from repo that is a submodule' '
276         test_when_finished "rm -rf repo1 repo2" &&
277
278         git init repo1 &&
279         git init repo1/sub &&
280         test_commit -C repo1/sub x &&
281         git -C repo1 submodule add ./sub &&
282         git -C repo1 commit -m "adding sub" &&
283
284         git clone --recurse-submodules repo1 repo2 &&
285         git -C repo2/sub checkout -b work &&
286         test_must_fail git -C repo2/sub branch -D work
287 '
288
289 test_expect_success 'bare main worktree has HEAD at branch deleted by secondary worktree' '
290         test_when_finished "rm -rf nonbare base secondary" &&
291
292         git init nonbare &&
293         test_commit -C nonbare x &&
294         git clone --bare nonbare bare &&
295         git -C bare worktree add --detach ../secondary master &&
296         git -C secondary branch -D master
297 '
298
299 test_expect_success 'git branch --list -v with --abbrev' '
300         test_when_finished "git branch -D t" &&
301         git branch t &&
302         git branch -v --list t >actual.default &&
303         git branch -v --list --abbrev t >actual.abbrev &&
304         test_cmp actual.default actual.abbrev &&
305
306         git branch -v --list --no-abbrev t >actual.noabbrev &&
307         git branch -v --list --abbrev=0 t >actual.0abbrev &&
308         test_cmp actual.noabbrev actual.0abbrev &&
309
310         git branch -v --list --abbrev=36 t >actual.36abbrev &&
311         # how many hexdigits are used?
312         read name objdefault rest <actual.abbrev &&
313         read name obj36 rest <actual.36abbrev &&
314         objfull=$(git rev-parse --verify t) &&
315
316         # are we really getting abbreviations?
317         test "$obj36" != "$objdefault" &&
318         expr "$obj36" : "$objdefault" >/dev/null &&
319         test "$objfull" != "$obj36" &&
320         expr "$objfull" : "$obj36" >/dev/null
321
322 '
323
324 test_expect_success 'git branch --column' '
325         COLUMNS=81 git branch --column=column >actual &&
326         cat >expect <<\EOF &&
327   a/b/c     bam       foo       l       * master    mb        o/o       q
328   abc       bar       j/k       m/m       master2   n         o/p       r
329 EOF
330         test_cmp expect actual
331 '
332
333 test_expect_success 'git branch --column with an extremely long branch name' '
334         long=this/is/a/part/of/long/branch/name &&
335         long=z$long/$long/$long/$long &&
336         test_when_finished "git branch -d $long" &&
337         git branch $long &&
338         COLUMNS=80 git branch --column=column >actual &&
339         cat >expect <<EOF &&
340   a/b/c
341   abc
342   bam
343   bar
344   foo
345   j/k
346   l
347   m/m
348 * master
349   master2
350   mb
351   n
352   o/o
353   o/p
354   q
355   r
356   $long
357 EOF
358         test_cmp expect actual
359 '
360
361 test_expect_success 'git branch with column.*' '
362         git config column.ui column &&
363         git config column.branch "dense" &&
364         COLUMNS=80 git branch >actual &&
365         git config --unset column.branch &&
366         git config --unset column.ui &&
367         cat >expect <<\EOF &&
368   a/b/c   bam   foo   l   * master    mb   o/o   q
369   abc     bar   j/k   m/m   master2   n    o/p   r
370 EOF
371         test_cmp expect actual
372 '
373
374 test_expect_success 'git branch --column -v should fail' '
375         test_must_fail git branch --column -v
376 '
377
378 test_expect_success 'git branch -v with column.ui ignored' '
379         git config column.ui column &&
380         COLUMNS=80 git branch -v | cut -c -10 | sed "s/ *$//" >actual &&
381         git config --unset column.ui &&
382         cat >expect <<\EOF &&
383   a/b/c
384   abc
385   bam
386   bar
387   foo
388   j/k
389   l
390   m/m
391 * master
392   master2
393   mb
394   n
395   o/o
396   o/p
397   q
398   r
399 EOF
400         test_cmp expect actual
401 '
402
403 mv .git/config .git/config-saved
404
405 test_expect_success SHA1 'git branch -m q q2 without config should succeed' '
406         git branch -m q q2 &&
407         git branch -m q2 q
408 '
409
410 mv .git/config-saved .git/config
411
412 git config branch.s/s.dummy Hello
413
414 test_expect_success 'git branch -m s/s s should work when s/t is deleted' '
415         git branch --create-reflog s/s &&
416         git reflog exists refs/heads/s/s &&
417         git branch --create-reflog s/t &&
418         git reflog exists refs/heads/s/t &&
419         git branch -d s/t &&
420         git branch -m s/s s &&
421         git reflog exists refs/heads/s
422 '
423
424 test_expect_success 'config information was renamed, too' '
425         test $(git config branch.s.dummy) = Hello &&
426         test_must_fail git config branch.s/s.dummy
427 '
428
429 test_expect_success 'git branch -m correctly renames multiple config sections' '
430         test_when_finished "git checkout master" &&
431         git checkout -b source master &&
432
433         # Assert that a config file with multiple config sections has
434         # those sections preserved...
435         cat >expect <<-\EOF &&
436         branch.dest.key1=value1
437         some.gar.b=age
438         branch.dest.key2=value2
439         EOF
440         cat >config.branch <<\EOF &&
441 ;; Note the lack of -\EOF above & mixed indenting here. This is
442 ;; intentional, we are also testing that the formatting of copied
443 ;; sections is preserved.
444
445 ;; Comment for source. Tabs
446 [branch "source"]
447         ;; Comment for the source value
448         key1 = value1
449 ;; Comment for some.gar. Spaces
450 [some "gar"]
451     ;; Comment for the some.gar value
452     b = age
453 ;; Comment for source, again. Mixed tabs/spaces.
454 [branch "source"]
455     ;; Comment for the source value, again
456         key2 = value2
457 EOF
458         cat config.branch >>.git/config &&
459         git branch -m source dest &&
460         git config -f .git/config -l | grep -F -e source -e dest -e some.gar >actual &&
461         test_cmp expect actual &&
462
463         # ...and that the comments for those sections are also
464         # preserved.
465         cat config.branch | sed "s/\"source\"/\"dest\"/" >expect &&
466         sed -n -e "/Note the lack/,\$p" .git/config >actual &&
467         test_cmp expect actual
468 '
469
470 test_expect_success 'git branch -c dumps usage' '
471         test_expect_code 128 git branch -c 2>err &&
472         test_i18ngrep "branch name required" err
473 '
474
475 test_expect_success 'git branch --copy dumps usage' '
476         test_expect_code 128 git branch --copy 2>err &&
477         test_i18ngrep "branch name required" err
478 '
479
480 test_expect_success 'git branch -c d e should work' '
481         git branch --create-reflog d &&
482         git reflog exists refs/heads/d &&
483         git config branch.d.dummy Hello &&
484         git branch -c d e &&
485         git reflog exists refs/heads/d &&
486         git reflog exists refs/heads/e &&
487         echo Hello >expect &&
488         git config branch.e.dummy >actual &&
489         test_cmp expect actual &&
490         echo Hello >expect &&
491         git config branch.d.dummy >actual &&
492         test_cmp expect actual
493 '
494
495 test_expect_success 'git branch --copy is a synonym for -c' '
496         git branch --create-reflog copy &&
497         git reflog exists refs/heads/copy &&
498         git config branch.copy.dummy Hello &&
499         git branch --copy copy copy-to &&
500         git reflog exists refs/heads/copy &&
501         git reflog exists refs/heads/copy-to &&
502         echo Hello >expect &&
503         git config branch.copy.dummy >actual &&
504         test_cmp expect actual &&
505         echo Hello >expect &&
506         git config branch.copy-to.dummy >actual &&
507         test_cmp expect actual
508 '
509
510 test_expect_success 'git branch -c ee ef should copy ee to create branch ef' '
511         git checkout -b ee &&
512         git reflog exists refs/heads/ee &&
513         git config branch.ee.dummy Hello &&
514         git branch -c ee ef &&
515         git reflog exists refs/heads/ee &&
516         git reflog exists refs/heads/ef &&
517         test $(git config branch.ee.dummy) = Hello &&
518         test $(git config branch.ef.dummy) = Hello &&
519         test $(git rev-parse --abbrev-ref HEAD) = ee
520 '
521
522 test_expect_success 'git branch -c f/f g/g should work' '
523         git branch --create-reflog f/f &&
524         git reflog exists refs/heads/f/f &&
525         git config branch.f/f.dummy Hello &&
526         git branch -c f/f g/g &&
527         git reflog exists refs/heads/f/f &&
528         git reflog exists refs/heads/g/g &&
529         test $(git config branch.f/f.dummy) = Hello &&
530         test $(git config branch.g/g.dummy) = Hello
531 '
532
533 test_expect_success 'git branch -c m2 m2 should work' '
534         git branch --create-reflog m2 &&
535         git reflog exists refs/heads/m2 &&
536         git config branch.m2.dummy Hello &&
537         git branch -c m2 m2 &&
538         git reflog exists refs/heads/m2 &&
539         test $(git config branch.m2.dummy) = Hello
540 '
541
542 test_expect_success 'git branch -c zz zz/zz should fail' '
543         git branch --create-reflog zz &&
544         git reflog exists refs/heads/zz &&
545         test_must_fail git branch -c zz zz/zz
546 '
547
548 test_expect_success 'git branch -c b/b b should fail' '
549         git branch --create-reflog b/b &&
550         test_must_fail git branch -c b/b b
551 '
552
553 test_expect_success 'git branch -C o/q o/p should work when o/p exists' '
554         git branch --create-reflog o/q &&
555         git reflog exists refs/heads/o/q &&
556         git reflog exists refs/heads/o/p &&
557         git branch -C o/q o/p
558 '
559
560 test_expect_success 'git branch -c -f o/q o/p should work when o/p exists' '
561         git reflog exists refs/heads/o/q &&
562         git reflog exists refs/heads/o/p &&
563         git branch -c -f o/q o/p
564 '
565
566 test_expect_success 'git branch -c qq rr/qq should fail when rr exists' '
567         git branch qq &&
568         git branch rr &&
569         test_must_fail git branch -c qq rr/qq
570 '
571
572 test_expect_success 'git branch -C b1 b2 should fail when b2 is checked out' '
573         git branch b1 &&
574         git checkout -b b2 &&
575         test_must_fail git branch -C b1 b2
576 '
577
578 test_expect_success 'git branch -C c1 c2 should succeed when c1 is checked out' '
579         git checkout -b c1 &&
580         git branch c2 &&
581         git branch -C c1 c2 &&
582         test $(git rev-parse --abbrev-ref HEAD) = c1
583 '
584
585 test_expect_success 'git branch -C c1 c2 should never touch HEAD' '
586         msg="Branch: copied refs/heads/c1 to refs/heads/c2" &&
587         ! grep "$msg$" .git/logs/HEAD
588 '
589
590 test_expect_success 'git branch -C master should work when master is checked out' '
591         git checkout master &&
592         git branch -C master
593 '
594
595 test_expect_success 'git branch -C master master should work when master is checked out' '
596         git checkout master &&
597         git branch -C master master
598 '
599
600 test_expect_success 'git branch -C master5 master5 should work when master is checked out' '
601         git checkout master &&
602         git branch master5 &&
603         git branch -C master5 master5
604 '
605
606 test_expect_success 'git branch -C ab cd should overwrite existing config for cd' '
607         git branch --create-reflog cd &&
608         git reflog exists refs/heads/cd &&
609         git config branch.cd.dummy CD &&
610         git branch --create-reflog ab &&
611         git reflog exists refs/heads/ab &&
612         git config branch.ab.dummy AB &&
613         git branch -C ab cd &&
614         git reflog exists refs/heads/ab &&
615         git reflog exists refs/heads/cd &&
616         test $(git config branch.ab.dummy) = AB &&
617         test $(git config branch.cd.dummy) = AB
618 '
619
620 test_expect_success 'git branch -c correctly copies multiple config sections' '
621         FOO=1 &&
622         export FOO &&
623         test_when_finished "git checkout master" &&
624         git checkout -b source2 master &&
625
626         # Assert that a config file with multiple config sections has
627         # those sections preserved...
628         cat >expect <<-\EOF &&
629         branch.source2.key1=value1
630         branch.dest2.key1=value1
631         more.gar.b=age
632         branch.source2.key2=value2
633         branch.dest2.key2=value2
634         EOF
635         cat >config.branch <<\EOF &&
636 ;; Note the lack of -\EOF above & mixed indenting here. This is
637 ;; intentional, we are also testing that the formatting of copied
638 ;; sections is preserved.
639
640 ;; Comment for source2. Tabs
641 [branch "source2"]
642         ;; Comment for the source2 value
643         key1 = value1
644 ;; Comment for more.gar. Spaces
645 [more "gar"]
646     ;; Comment for the more.gar value
647     b = age
648 ;; Comment for source2, again. Mixed tabs/spaces.
649 [branch "source2"]
650     ;; Comment for the source2 value, again
651         key2 = value2
652 EOF
653         cat config.branch >>.git/config &&
654         git branch -c source2 dest2 &&
655         git config -f .git/config -l | grep -F -e source2 -e dest2 -e more.gar >actual &&
656         test_cmp expect actual &&
657
658         # ...and that the comments and formatting for those sections
659         # is also preserved.
660         cat >expect <<\EOF &&
661 ;; Comment for source2. Tabs
662 [branch "source2"]
663         ;; Comment for the source2 value
664         key1 = value1
665 ;; Comment for more.gar. Spaces
666 [branch "dest2"]
667         ;; Comment for the source2 value
668         key1 = value1
669 ;; Comment for more.gar. Spaces
670 [more "gar"]
671     ;; Comment for the more.gar value
672     b = age
673 ;; Comment for source2, again. Mixed tabs/spaces.
674 [branch "source2"]
675     ;; Comment for the source2 value, again
676         key2 = value2
677 [branch "dest2"]
678     ;; Comment for the source2 value, again
679         key2 = value2
680 EOF
681         sed -n -e "/Comment for source2/,\$p" .git/config >actual &&
682         test_cmp expect actual
683 '
684
685 test_expect_success 'deleting a symref' '
686         git branch target &&
687         git symbolic-ref refs/heads/symref refs/heads/target &&
688         echo "Deleted branch symref (was refs/heads/target)." >expect &&
689         git branch -d symref >actual &&
690         test_path_is_file .git/refs/heads/target &&
691         test_path_is_missing .git/refs/heads/symref &&
692         test_i18ncmp expect actual
693 '
694
695 test_expect_success 'deleting a dangling symref' '
696         git symbolic-ref refs/heads/dangling-symref nowhere &&
697         test_path_is_file .git/refs/heads/dangling-symref &&
698         echo "Deleted branch dangling-symref (was nowhere)." >expect &&
699         git branch -d dangling-symref >actual &&
700         test_path_is_missing .git/refs/heads/dangling-symref &&
701         test_i18ncmp expect actual
702 '
703
704 test_expect_success 'deleting a self-referential symref' '
705         git symbolic-ref refs/heads/self-reference refs/heads/self-reference &&
706         test_path_is_file .git/refs/heads/self-reference &&
707         echo "Deleted branch self-reference (was refs/heads/self-reference)." >expect &&
708         git branch -d self-reference >actual &&
709         test_path_is_missing .git/refs/heads/self-reference &&
710         test_i18ncmp expect actual
711 '
712
713 test_expect_success 'renaming a symref is not allowed' '
714         git symbolic-ref refs/heads/master2 refs/heads/master &&
715         test_must_fail git branch -m master2 master3 &&
716         git symbolic-ref refs/heads/master2 &&
717         test_path_is_file .git/refs/heads/master &&
718         test_path_is_missing .git/refs/heads/master3
719 '
720
721 test_expect_success SYMLINKS 'git branch -m u v should fail when the reflog for u is a symlink' '
722         git branch --create-reflog u &&
723         mv .git/logs/refs/heads/u real-u &&
724         ln -s real-u .git/logs/refs/heads/u &&
725         test_must_fail git branch -m u v
726 '
727
728 test_expect_success 'test tracking setup via --track' '
729         git config remote.local.url . &&
730         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
731         (git show-ref -q refs/remotes/local/master || git fetch local) &&
732         git branch --track my1 local/master &&
733         test $(git config branch.my1.remote) = local &&
734         test $(git config branch.my1.merge) = refs/heads/master
735 '
736
737 test_expect_success 'test tracking setup (non-wildcard, matching)' '
738         git config remote.local.url . &&
739         git config remote.local.fetch refs/heads/master:refs/remotes/local/master &&
740         (git show-ref -q refs/remotes/local/master || git fetch local) &&
741         git branch --track my4 local/master &&
742         test $(git config branch.my4.remote) = local &&
743         test $(git config branch.my4.merge) = refs/heads/master
744 '
745
746 test_expect_success 'tracking setup fails on non-matching refspec' '
747         git config remote.local.url . &&
748         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
749         (git show-ref -q refs/remotes/local/master || git fetch local) &&
750         git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
751         test_must_fail git branch --track my5 local/master &&
752         test_must_fail git config branch.my5.remote &&
753         test_must_fail git config branch.my5.merge
754 '
755
756 test_expect_success 'test tracking setup via config' '
757         git config branch.autosetupmerge true &&
758         git config remote.local.url . &&
759         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
760         (git show-ref -q refs/remotes/local/master || git fetch local) &&
761         git branch my3 local/master &&
762         test $(git config branch.my3.remote) = local &&
763         test $(git config branch.my3.merge) = refs/heads/master
764 '
765
766 test_expect_success 'test overriding tracking setup via --no-track' '
767         git config branch.autosetupmerge true &&
768         git config remote.local.url . &&
769         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
770         (git show-ref -q refs/remotes/local/master || git fetch local) &&
771         git branch --no-track my2 local/master &&
772         git config branch.autosetupmerge false &&
773         ! test "$(git config branch.my2.remote)" = local &&
774         ! test "$(git config branch.my2.merge)" = refs/heads/master
775 '
776
777 test_expect_success 'no tracking without .fetch entries' '
778         git config branch.autosetupmerge true &&
779         git branch my6 s &&
780         git config branch.autosetupmerge false &&
781         test -z "$(git config branch.my6.remote)" &&
782         test -z "$(git config branch.my6.merge)"
783 '
784
785 test_expect_success 'test tracking setup via --track but deeper' '
786         git config remote.local.url . &&
787         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
788         (git show-ref -q refs/remotes/local/o/o || git fetch local) &&
789         git branch --track my7 local/o/o &&
790         test "$(git config branch.my7.remote)" = local &&
791         test "$(git config branch.my7.merge)" = refs/heads/o/o
792 '
793
794 test_expect_success 'test deleting branch deletes branch config' '
795         git branch -d my7 &&
796         test -z "$(git config branch.my7.remote)" &&
797         test -z "$(git config branch.my7.merge)"
798 '
799
800 test_expect_success 'test deleting branch without config' '
801         git branch my7 s &&
802         sha1=$(git rev-parse my7 | cut -c 1-7) &&
803         echo "Deleted branch my7 (was $sha1)." >expect &&
804         git branch -d my7 >actual 2>&1 &&
805         test_i18ncmp expect actual
806 '
807
808 test_expect_success 'deleting currently checked out branch fails' '
809         git worktree add -b my7 my7 &&
810         test_must_fail git -C my7 branch -d my7 &&
811         test_must_fail git branch -d my7 &&
812         rm -r my7 &&
813         git worktree prune
814 '
815
816 test_expect_success 'test --track without .fetch entries' '
817         git branch --track my8 &&
818         test "$(git config branch.my8.remote)" &&
819         test "$(git config branch.my8.merge)"
820 '
821
822 test_expect_success 'branch from non-branch HEAD w/autosetupmerge=always' '
823         git config branch.autosetupmerge always &&
824         git branch my9 HEAD^ &&
825         git config branch.autosetupmerge false
826 '
827
828 test_expect_success 'branch from non-branch HEAD w/--track causes failure' '
829         test_must_fail git branch --track my10 HEAD^
830 '
831
832 test_expect_success 'branch from tag w/--track causes failure' '
833         git tag foobar &&
834         test_must_fail git branch --track my11 foobar
835 '
836
837 test_expect_success '--set-upstream-to fails on multiple branches' '
838         echo "fatal: too many arguments to set new upstream" >expect &&
839         test_must_fail git branch --set-upstream-to master a b c 2>err &&
840         test_i18ncmp expect err
841 '
842
843 test_expect_success '--set-upstream-to fails on detached HEAD' '
844         git checkout HEAD^{} &&
845         test_when_finished git checkout - &&
846         echo "fatal: could not set upstream of HEAD to master when it does not point to any branch." >expect &&
847         test_must_fail git branch --set-upstream-to master 2>err &&
848         test_i18ncmp expect err
849 '
850
851 test_expect_success '--set-upstream-to fails on a missing dst branch' '
852         echo "fatal: branch '"'"'does-not-exist'"'"' does not exist" >expect &&
853         test_must_fail git branch --set-upstream-to master does-not-exist 2>err &&
854         test_i18ncmp expect err
855 '
856
857 test_expect_success '--set-upstream-to fails on a missing src branch' '
858         test_must_fail git branch --set-upstream-to does-not-exist master 2>err &&
859         test_i18ngrep "the requested upstream branch '"'"'does-not-exist'"'"' does not exist" err
860 '
861
862 test_expect_success '--set-upstream-to fails on a non-ref' '
863         echo "fatal: Cannot setup tracking information; starting point '"'"'HEAD^{}'"'"' is not a branch." >expect &&
864         test_must_fail git branch --set-upstream-to HEAD^{} 2>err &&
865         test_i18ncmp expect err
866 '
867
868 test_expect_success '--set-upstream-to fails on locked config' '
869         test_when_finished "rm -f .git/config.lock" &&
870         >.git/config.lock &&
871         git branch locked &&
872         test_must_fail git branch --set-upstream-to locked 2>err &&
873         test_i18ngrep "could not lock config file .git/config" err
874 '
875
876 test_expect_success 'use --set-upstream-to modify HEAD' '
877         test_config branch.master.remote foo &&
878         test_config branch.master.merge foo &&
879         git branch my12 &&
880         git branch --set-upstream-to my12 &&
881         test "$(git config branch.master.remote)" = "." &&
882         test "$(git config branch.master.merge)" = "refs/heads/my12"
883 '
884
885 test_expect_success 'use --set-upstream-to modify a particular branch' '
886         git branch my13 &&
887         git branch --set-upstream-to master my13 &&
888         test_when_finished "git branch --unset-upstream my13" &&
889         test "$(git config branch.my13.remote)" = "." &&
890         test "$(git config branch.my13.merge)" = "refs/heads/master"
891 '
892
893 test_expect_success '--unset-upstream should fail if given a non-existent branch' '
894         echo "fatal: Branch '"'"'i-dont-exist'"'"' has no upstream information" >expect &&
895         test_must_fail git branch --unset-upstream i-dont-exist 2>err &&
896         test_i18ncmp expect err
897 '
898
899 test_expect_success '--unset-upstream should fail if config is locked' '
900         test_when_finished "rm -f .git/config.lock" &&
901         git branch --set-upstream-to locked &&
902         >.git/config.lock &&
903         test_must_fail git branch --unset-upstream 2>err &&
904         test_i18ngrep "could not lock config file .git/config" err
905 '
906
907 test_expect_success 'test --unset-upstream on HEAD' '
908         git branch my14 &&
909         test_config branch.master.remote foo &&
910         test_config branch.master.merge foo &&
911         git branch --set-upstream-to my14 &&
912         git branch --unset-upstream &&
913         test_must_fail git config branch.master.remote &&
914         test_must_fail git config branch.master.merge &&
915         # fail for a branch without upstream set
916         echo "fatal: Branch '"'"'master'"'"' has no upstream information" >expect &&
917         test_must_fail git branch --unset-upstream 2>err &&
918         test_i18ncmp expect err
919 '
920
921 test_expect_success '--unset-upstream should fail on multiple branches' '
922         echo "fatal: too many arguments to unset upstream" >expect &&
923         test_must_fail git branch --unset-upstream a b c 2>err &&
924         test_i18ncmp expect err
925 '
926
927 test_expect_success '--unset-upstream should fail on detached HEAD' '
928         git checkout HEAD^{} &&
929         test_when_finished git checkout - &&
930         echo "fatal: could not unset upstream of HEAD when it does not point to any branch." >expect &&
931         test_must_fail git branch --unset-upstream 2>err &&
932         test_i18ncmp expect err
933 '
934
935 test_expect_success 'test --unset-upstream on a particular branch' '
936         git branch my15 &&
937         git branch --set-upstream-to master my14 &&
938         git branch --unset-upstream my14 &&
939         test_must_fail git config branch.my14.remote &&
940         test_must_fail git config branch.my14.merge
941 '
942
943 test_expect_success 'disabled option --set-upstream fails' '
944         test_must_fail git branch --set-upstream origin/master
945 '
946
947 test_expect_success '--set-upstream-to notices an error to set branch as own upstream' '
948         git branch --set-upstream-to refs/heads/my13 my13 2>actual &&
949         cat >expect <<-\EOF &&
950         warning: Not setting branch my13 as its own upstream.
951         EOF
952         test_expect_code 1 git config branch.my13.remote &&
953         test_expect_code 1 git config branch.my13.merge &&
954         test_i18ncmp expect actual
955 '
956
957 # Keep this test last, as it changes the current branch
958 cat >expect <<EOF
959 $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000     branch: Created from master
960 EOF
961 test_expect_success 'git checkout -b g/h/i -l should create a branch and a log' '
962         GIT_COMMITTER_DATE="2005-05-26 23:30" \
963         git checkout -b g/h/i -l master &&
964         test_path_is_file .git/refs/heads/g/h/i &&
965         test_path_is_file .git/logs/refs/heads/g/h/i &&
966         test_cmp expect .git/logs/refs/heads/g/h/i
967 '
968
969 test_expect_success 'checkout -b makes reflog by default' '
970         git checkout master &&
971         git config --unset core.logAllRefUpdates &&
972         git checkout -b alpha &&
973         git rev-parse --verify alpha@{0}
974 '
975
976 test_expect_success 'checkout -b does not make reflog when core.logAllRefUpdates = false' '
977         git checkout master &&
978         git config core.logAllRefUpdates false &&
979         git checkout -b beta &&
980         test_must_fail git rev-parse --verify beta@{0}
981 '
982
983 test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates = false' '
984         git checkout master &&
985         git checkout -lb gamma &&
986         git config --unset core.logAllRefUpdates &&
987         git rev-parse --verify gamma@{0}
988 '
989
990 test_expect_success 'avoid ambiguous track' '
991         git config branch.autosetupmerge true &&
992         git config remote.ambi1.url lalala &&
993         git config remote.ambi1.fetch refs/heads/lalala:refs/heads/master &&
994         git config remote.ambi2.url lilili &&
995         git config remote.ambi2.fetch refs/heads/lilili:refs/heads/master &&
996         test_must_fail git branch all1 master &&
997         test -z "$(git config branch.all1.merge)"
998 '
999
1000 test_expect_success 'autosetuprebase local on a tracked local branch' '
1001         git config remote.local.url . &&
1002         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1003         git config branch.autosetuprebase local &&
1004         (git show-ref -q refs/remotes/local/o || git fetch local) &&
1005         git branch mybase &&
1006         git branch --track myr1 mybase &&
1007         test "$(git config branch.myr1.remote)" = . &&
1008         test "$(git config branch.myr1.merge)" = refs/heads/mybase &&
1009         test "$(git config branch.myr1.rebase)" = true
1010 '
1011
1012 test_expect_success 'autosetuprebase always on a tracked local branch' '
1013         git config remote.local.url . &&
1014         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1015         git config branch.autosetuprebase always &&
1016         (git show-ref -q refs/remotes/local/o || git fetch local) &&
1017         git branch mybase2 &&
1018         git branch --track myr2 mybase &&
1019         test "$(git config branch.myr2.remote)" = . &&
1020         test "$(git config branch.myr2.merge)" = refs/heads/mybase &&
1021         test "$(git config branch.myr2.rebase)" = true
1022 '
1023
1024 test_expect_success 'autosetuprebase remote on a tracked local branch' '
1025         git config remote.local.url . &&
1026         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1027         git config branch.autosetuprebase remote &&
1028         (git show-ref -q refs/remotes/local/o || git fetch local) &&
1029         git branch mybase3 &&
1030         git branch --track myr3 mybase2 &&
1031         test "$(git config branch.myr3.remote)" = . &&
1032         test "$(git config branch.myr3.merge)" = refs/heads/mybase2 &&
1033         ! test "$(git config branch.myr3.rebase)" = true
1034 '
1035
1036 test_expect_success 'autosetuprebase never on a tracked local branch' '
1037         git config remote.local.url . &&
1038         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1039         git config branch.autosetuprebase never &&
1040         (git show-ref -q refs/remotes/local/o || git fetch local) &&
1041         git branch mybase4 &&
1042         git branch --track myr4 mybase2 &&
1043         test "$(git config branch.myr4.remote)" = . &&
1044         test "$(git config branch.myr4.merge)" = refs/heads/mybase2 &&
1045         ! test "$(git config branch.myr4.rebase)" = true
1046 '
1047
1048 test_expect_success 'autosetuprebase local on a tracked remote branch' '
1049         git config remote.local.url . &&
1050         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1051         git config branch.autosetuprebase local &&
1052         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1053         git branch --track myr5 local/master &&
1054         test "$(git config branch.myr5.remote)" = local &&
1055         test "$(git config branch.myr5.merge)" = refs/heads/master &&
1056         ! test "$(git config branch.myr5.rebase)" = true
1057 '
1058
1059 test_expect_success 'autosetuprebase never on a tracked remote branch' '
1060         git config remote.local.url . &&
1061         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1062         git config branch.autosetuprebase never &&
1063         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1064         git branch --track myr6 local/master &&
1065         test "$(git config branch.myr6.remote)" = local &&
1066         test "$(git config branch.myr6.merge)" = refs/heads/master &&
1067         ! test "$(git config branch.myr6.rebase)" = true
1068 '
1069
1070 test_expect_success 'autosetuprebase remote on a tracked remote branch' '
1071         git config remote.local.url . &&
1072         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1073         git config branch.autosetuprebase remote &&
1074         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1075         git branch --track myr7 local/master &&
1076         test "$(git config branch.myr7.remote)" = local &&
1077         test "$(git config branch.myr7.merge)" = refs/heads/master &&
1078         test "$(git config branch.myr7.rebase)" = true
1079 '
1080
1081 test_expect_success 'autosetuprebase always on a tracked remote branch' '
1082         git config remote.local.url . &&
1083         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1084         git config branch.autosetuprebase remote &&
1085         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1086         git branch --track myr8 local/master &&
1087         test "$(git config branch.myr8.remote)" = local &&
1088         test "$(git config branch.myr8.merge)" = refs/heads/master &&
1089         test "$(git config branch.myr8.rebase)" = true
1090 '
1091
1092 test_expect_success 'autosetuprebase unconfigured on a tracked remote branch' '
1093         git config --unset branch.autosetuprebase &&
1094         git config remote.local.url . &&
1095         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1096         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1097         git branch --track myr9 local/master &&
1098         test "$(git config branch.myr9.remote)" = local &&
1099         test "$(git config branch.myr9.merge)" = refs/heads/master &&
1100         test "z$(git config branch.myr9.rebase)" = z
1101 '
1102
1103 test_expect_success 'autosetuprebase unconfigured on a tracked local branch' '
1104         git config remote.local.url . &&
1105         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1106         (git show-ref -q refs/remotes/local/o || git fetch local) &&
1107         git branch mybase10 &&
1108         git branch --track myr10 mybase2 &&
1109         test "$(git config branch.myr10.remote)" = . &&
1110         test "$(git config branch.myr10.merge)" = refs/heads/mybase2 &&
1111         test "z$(git config branch.myr10.rebase)" = z
1112 '
1113
1114 test_expect_success 'autosetuprebase unconfigured on untracked local branch' '
1115         git config remote.local.url . &&
1116         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1117         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1118         git branch --no-track myr11 mybase2 &&
1119         test "z$(git config branch.myr11.remote)" = z &&
1120         test "z$(git config branch.myr11.merge)" = z &&
1121         test "z$(git config branch.myr11.rebase)" = z
1122 '
1123
1124 test_expect_success 'autosetuprebase unconfigured on untracked remote branch' '
1125         git config remote.local.url . &&
1126         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1127         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1128         git branch --no-track myr12 local/master &&
1129         test "z$(git config branch.myr12.remote)" = z &&
1130         test "z$(git config branch.myr12.merge)" = z &&
1131         test "z$(git config branch.myr12.rebase)" = z
1132 '
1133
1134 test_expect_success 'autosetuprebase never on an untracked local branch' '
1135         git config branch.autosetuprebase never &&
1136         git config remote.local.url . &&
1137         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1138         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1139         git branch --no-track myr13 mybase2 &&
1140         test "z$(git config branch.myr13.remote)" = z &&
1141         test "z$(git config branch.myr13.merge)" = z &&
1142         test "z$(git config branch.myr13.rebase)" = z
1143 '
1144
1145 test_expect_success 'autosetuprebase local on an untracked local branch' '
1146         git config branch.autosetuprebase local &&
1147         git config remote.local.url . &&
1148         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1149         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1150         git branch --no-track myr14 mybase2 &&
1151         test "z$(git config branch.myr14.remote)" = z &&
1152         test "z$(git config branch.myr14.merge)" = z &&
1153         test "z$(git config branch.myr14.rebase)" = z
1154 '
1155
1156 test_expect_success 'autosetuprebase remote on an untracked local branch' '
1157         git config branch.autosetuprebase remote &&
1158         git config remote.local.url . &&
1159         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1160         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1161         git branch --no-track myr15 mybase2 &&
1162         test "z$(git config branch.myr15.remote)" = z &&
1163         test "z$(git config branch.myr15.merge)" = z &&
1164         test "z$(git config branch.myr15.rebase)" = z
1165 '
1166
1167 test_expect_success 'autosetuprebase always on an untracked local branch' '
1168         git config branch.autosetuprebase always &&
1169         git config remote.local.url . &&
1170         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1171         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1172         git branch --no-track myr16 mybase2 &&
1173         test "z$(git config branch.myr16.remote)" = z &&
1174         test "z$(git config branch.myr16.merge)" = z &&
1175         test "z$(git config branch.myr16.rebase)" = z
1176 '
1177
1178 test_expect_success 'autosetuprebase never on an untracked remote branch' '
1179         git config branch.autosetuprebase never &&
1180         git config remote.local.url . &&
1181         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1182         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1183         git branch --no-track myr17 local/master &&
1184         test "z$(git config branch.myr17.remote)" = z &&
1185         test "z$(git config branch.myr17.merge)" = z &&
1186         test "z$(git config branch.myr17.rebase)" = z
1187 '
1188
1189 test_expect_success 'autosetuprebase local on an untracked remote branch' '
1190         git config branch.autosetuprebase local &&
1191         git config remote.local.url . &&
1192         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1193         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1194         git branch --no-track myr18 local/master &&
1195         test "z$(git config branch.myr18.remote)" = z &&
1196         test "z$(git config branch.myr18.merge)" = z &&
1197         test "z$(git config branch.myr18.rebase)" = z
1198 '
1199
1200 test_expect_success 'autosetuprebase remote on an untracked remote branch' '
1201         git config branch.autosetuprebase remote &&
1202         git config remote.local.url . &&
1203         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1204         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1205         git branch --no-track myr19 local/master &&
1206         test "z$(git config branch.myr19.remote)" = z &&
1207         test "z$(git config branch.myr19.merge)" = z &&
1208         test "z$(git config branch.myr19.rebase)" = z
1209 '
1210
1211 test_expect_success 'autosetuprebase always on an untracked remote branch' '
1212         git config branch.autosetuprebase always &&
1213         git config remote.local.url . &&
1214         git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1215         (git show-ref -q refs/remotes/local/master || git fetch local) &&
1216         git branch --no-track myr20 local/master &&
1217         test "z$(git config branch.myr20.remote)" = z &&
1218         test "z$(git config branch.myr20.merge)" = z &&
1219         test "z$(git config branch.myr20.rebase)" = z
1220 '
1221
1222 test_expect_success 'autosetuprebase always on detached HEAD' '
1223         git config branch.autosetupmerge always &&
1224         test_when_finished git checkout master &&
1225         git checkout HEAD^0 &&
1226         git branch my11 &&
1227         test -z "$(git config branch.my11.remote)" &&
1228         test -z "$(git config branch.my11.merge)"
1229 '
1230
1231 test_expect_success 'detect misconfigured autosetuprebase (bad value)' '
1232         git config branch.autosetuprebase garbage &&
1233         test_must_fail git branch
1234 '
1235
1236 test_expect_success 'detect misconfigured autosetuprebase (no value)' '
1237         git config --unset branch.autosetuprebase &&
1238         echo "[branch] autosetuprebase" >>.git/config &&
1239         test_must_fail git branch &&
1240         git config --unset branch.autosetuprebase
1241 '
1242
1243 test_expect_success 'attempt to delete a branch without base and unmerged to HEAD' '
1244         git checkout my9 &&
1245         git config --unset branch.my8.merge &&
1246         test_must_fail git branch -d my8
1247 '
1248
1249 test_expect_success 'attempt to delete a branch merged to its base' '
1250         # we are on my9 which is the initial commit; traditionally
1251         # we would not have allowed deleting my8 that is not merged
1252         # to my9, but it is set to track master that already has my8
1253         git config branch.my8.merge refs/heads/master &&
1254         git branch -d my8
1255 '
1256
1257 test_expect_success 'attempt to delete a branch merged to its base' '
1258         git checkout master &&
1259         echo Third >>A &&
1260         git commit -m "Third commit" A &&
1261         git branch -t my10 my9 &&
1262         git branch -f my10 HEAD^ &&
1263         # we are on master which is at the third commit, and my10
1264         # is behind us, so traditionally we would have allowed deleting
1265         # it; but my10 is set to track my9 that is further behind.
1266         test_must_fail git branch -d my10
1267 '
1268
1269 test_expect_success 'use --edit-description' '
1270         write_script editor <<-\EOF &&
1271                 echo "New contents" >"$1"
1272         EOF
1273         EDITOR=./editor git branch --edit-description &&
1274                 write_script editor <<-\EOF &&
1275                 git stripspace -s <"$1" >"EDITOR_OUTPUT"
1276         EOF
1277         EDITOR=./editor git branch --edit-description &&
1278         echo "New contents" >expect &&
1279         test_cmp expect EDITOR_OUTPUT
1280 '
1281
1282 test_expect_success 'detect typo in branch name when using --edit-description' '
1283         write_script editor <<-\EOF &&
1284                 echo "New contents" >"$1"
1285         EOF
1286         test_must_fail env EDITOR=./editor git branch --edit-description no-such-branch
1287 '
1288
1289 test_expect_success 'refuse --edit-description on unborn branch for now' '
1290         write_script editor <<-\EOF &&
1291                 echo "New contents" >"$1"
1292         EOF
1293         git checkout --orphan unborn &&
1294         test_must_fail env EDITOR=./editor git branch --edit-description
1295 '
1296
1297 test_expect_success '--merged catches invalid object names' '
1298         test_must_fail git branch --merged 0000000000000000000000000000000000000000
1299 '
1300
1301 test_expect_success '--merged is incompatible with --no-merged' '
1302         test_must_fail git branch --merged HEAD --no-merged HEAD
1303 '
1304
1305 test_expect_success '--list during rebase' '
1306         test_when_finished "reset_rebase" &&
1307         git checkout master &&
1308         FAKE_LINES="1 edit 2" &&
1309         export FAKE_LINES &&
1310         set_fake_editor &&
1311         git rebase -i HEAD~2 &&
1312         git branch --list >actual &&
1313         test_i18ngrep "rebasing master" actual
1314 '
1315
1316 test_expect_success '--list during rebase from detached HEAD' '
1317         test_when_finished "reset_rebase && git checkout master" &&
1318         git checkout master^0 &&
1319         oid=$(git rev-parse --short HEAD) &&
1320         FAKE_LINES="1 edit 2" &&
1321         export FAKE_LINES &&
1322         set_fake_editor &&
1323         git rebase -i HEAD~2 &&
1324         git branch --list >actual &&
1325         test_i18ngrep "rebasing detached HEAD $oid" actual
1326 '
1327
1328 test_expect_success 'tracking with unexpected .fetch refspec' '
1329         rm -rf a b c d &&
1330         git init a &&
1331         (
1332                 cd a &&
1333                 test_commit a
1334         ) &&
1335         git init b &&
1336         (
1337                 cd b &&
1338                 test_commit b
1339         ) &&
1340         git init c &&
1341         (
1342                 cd c &&
1343                 test_commit c &&
1344                 git remote add a ../a &&
1345                 git remote add b ../b &&
1346                 git fetch --all
1347         ) &&
1348         git init d &&
1349         (
1350                 cd d &&
1351                 git remote add c ../c &&
1352                 git config remote.c.fetch "+refs/remotes/*:refs/remotes/*" &&
1353                 git fetch c &&
1354                 git branch --track local/a/master remotes/a/master &&
1355                 test "$(git config branch.local/a/master.remote)" = "c" &&
1356                 test "$(git config branch.local/a/master.merge)" = "refs/remotes/a/master" &&
1357                 git rev-parse --verify a >expect &&
1358                 git rev-parse --verify local/a/master >actual &&
1359                 test_cmp expect actual
1360         )
1361 '
1362
1363 test_expect_success 'configured committerdate sort' '
1364         git init sort &&
1365         (
1366                 cd sort &&
1367                 git config branch.sort committerdate &&
1368                 test_commit initial &&
1369                 git checkout -b a &&
1370                 test_commit a &&
1371                 git checkout -b c &&
1372                 test_commit c &&
1373                 git checkout -b b &&
1374                 test_commit b &&
1375                 git branch >actual &&
1376                 cat >expect <<-\EOF &&
1377                   master
1378                   a
1379                   c
1380                 * b
1381                 EOF
1382                 test_cmp expect actual
1383         )
1384 '
1385
1386 test_expect_success 'option override configured sort' '
1387         (
1388                 cd sort &&
1389                 git config branch.sort committerdate &&
1390                 git branch --sort=refname >actual &&
1391                 cat >expect <<-\EOF &&
1392                   a
1393                 * b
1394                   c
1395                   master
1396                 EOF
1397                 test_cmp expect actual
1398         )
1399 '
1400
1401 test_expect_success 'invalid sort parameter in configuration' '
1402         (
1403                 cd sort &&
1404                 git config branch.sort "v:notvalid" &&
1405                 test_must_fail git branch
1406         )
1407 '
1408
1409 test_done