Merge branch 'ob/sequencer-rearrange-cleanup'
[git.git] / t / t3200-branch.sh
blob080e4f24a6e2b1a238cfc7f340579b4eec2066d3
1 #!/bin/sh
3 # Copyright (c) 2005 Amos Waterland
6 test_description='git branch assorted tests'
8 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
9 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
11 TEST_PASSES_SANITIZE_LEAK=true
12 . ./test-lib.sh
13 . "$TEST_DIRECTORY"/lib-rebase.sh
15 test_expect_success 'prepare a trivial repository' '
16 echo Hello >A &&
17 git update-index --add A &&
18 git commit -m "Initial commit." &&
19 git branch -M main &&
20 echo World >>A &&
21 git update-index --add A &&
22 git commit -m "Second commit." &&
23 HEAD=$(git rev-parse --verify HEAD)
26 test_expect_success 'git branch --help should not have created a bogus branch' '
27 test_might_fail git branch --man --help </dev/null >/dev/null 2>&1 &&
28 test_path_is_missing .git/refs/heads/--help
31 test_expect_success 'branch -h in broken repository' '
32 mkdir broken &&
34 cd broken &&
35 git init -b main &&
36 >.git/refs/heads/main &&
37 test_expect_code 129 git branch -h >usage 2>&1
38 ) &&
39 test_i18ngrep "[Uu]sage" broken/usage
42 test_expect_success 'git branch abc should create a branch' '
43 git branch abc && test_path_is_file .git/refs/heads/abc
46 test_expect_success 'git branch abc should fail when abc exists' '
47 test_must_fail git branch abc
50 test_expect_success 'git branch --force abc should fail when abc is checked out' '
51 test_when_finished git switch main &&
52 git switch abc &&
53 test_must_fail git branch --force abc HEAD~1
56 test_expect_success 'git branch --force abc should succeed when abc exists' '
57 git rev-parse HEAD~1 >expect &&
58 git branch --force abc HEAD~1 &&
59 git rev-parse abc >actual &&
60 test_cmp expect actual
63 test_expect_success 'git branch a/b/c should create a branch' '
64 git branch a/b/c && test_path_is_file .git/refs/heads/a/b/c
67 test_expect_success 'git branch mb main... should create a branch' '
68 git branch mb main... && test_path_is_file .git/refs/heads/mb
71 test_expect_success 'git branch HEAD should fail' '
72 test_must_fail git branch HEAD
75 cat >expect <<EOF
76 $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from main
77 EOF
78 test_expect_success 'git branch --create-reflog d/e/f should create a branch and a log' '
79 GIT_COMMITTER_DATE="2005-05-26 23:30" \
80 git -c core.logallrefupdates=false branch --create-reflog d/e/f &&
81 test_path_is_file .git/refs/heads/d/e/f &&
82 test_path_is_file .git/logs/refs/heads/d/e/f &&
83 test_cmp expect .git/logs/refs/heads/d/e/f
86 test_expect_success 'git branch -d d/e/f should delete a branch and a log' '
87 git branch -d d/e/f &&
88 test_path_is_missing .git/refs/heads/d/e/f &&
89 test_must_fail git reflog exists refs/heads/d/e/f
92 test_expect_success 'git branch j/k should work after branch j has been deleted' '
93 git branch j &&
94 git branch -d j &&
95 git branch j/k
98 test_expect_success 'git branch l should work after branch l/m has been deleted' '
99 git branch l/m &&
100 git branch -d l/m &&
101 git branch l
104 test_expect_success 'git branch -m dumps usage' '
105 test_expect_code 128 git branch -m 2>err &&
106 test_i18ngrep "branch name required" err
109 test_expect_success 'git branch -m m broken_symref should work' '
110 test_when_finished "git branch -D broken_symref" &&
111 git branch --create-reflog m &&
112 git symbolic-ref refs/heads/broken_symref refs/heads/i_am_broken &&
113 git branch -m m broken_symref &&
114 git reflog exists refs/heads/broken_symref &&
115 test_must_fail git reflog exists refs/heads/i_am_broken
118 test_expect_success 'git branch -m m m/m should work' '
119 git branch --create-reflog m &&
120 git branch -m m m/m &&
121 git reflog exists refs/heads/m/m
124 test_expect_success 'git branch -m n/n n should work' '
125 git branch --create-reflog n/n &&
126 git branch -m n/n n &&
127 git reflog exists refs/heads/n
130 # The topmost entry in reflog for branch bbb is about branch creation.
131 # Hence, we compare bbb@{1} (instead of bbb@{0}) with aaa@{0}.
133 test_expect_success 'git branch -m bbb should rename checked out branch' '
134 test_when_finished git branch -D bbb &&
135 test_when_finished git checkout main &&
136 git checkout -b aaa &&
137 git commit --allow-empty -m "a new commit" &&
138 git rev-parse aaa@{0} >expect &&
139 git branch -m bbb &&
140 git rev-parse bbb@{1} >actual &&
141 test_cmp expect actual &&
142 git symbolic-ref HEAD >actual &&
143 echo refs/heads/bbb >expect &&
144 test_cmp expect actual
147 test_expect_success 'renaming checked out branch works with d/f conflict' '
148 test_when_finished "git branch -D foo/bar || git branch -D foo" &&
149 test_when_finished git checkout main &&
150 git checkout -b foo &&
151 git branch -m foo/bar &&
152 git symbolic-ref HEAD >actual &&
153 echo refs/heads/foo/bar >expect &&
154 test_cmp expect actual
157 test_expect_success 'git branch -m o/o o should fail when o/p exists' '
158 git branch o/o &&
159 git branch o/p &&
160 test_must_fail git branch -m o/o o
163 test_expect_success 'git branch -m o/q o/p should fail when o/p exists' '
164 git branch o/q &&
165 test_must_fail git branch -m o/q o/p
168 test_expect_success 'git branch -M o/q o/p should work when o/p exists' '
169 git branch -M o/q o/p
172 test_expect_success 'git branch -m -f o/q o/p should work when o/p exists' '
173 git branch o/q &&
174 git branch -m -f o/q o/p
177 test_expect_success 'git branch -m q r/q should fail when r exists' '
178 git branch q &&
179 git branch r &&
180 test_must_fail git branch -m q r/q
183 test_expect_success 'git branch -M foo bar should fail when bar is checked out' '
184 git branch bar &&
185 git checkout -b foo &&
186 test_must_fail git branch -M bar foo
189 test_expect_success 'git branch -M foo bar should fail when bar is checked out in worktree' '
190 git branch -f bar &&
191 test_when_finished "git worktree remove wt && git branch -D wt" &&
192 git worktree add wt &&
193 test_must_fail git branch -M bar wt
196 test_expect_success 'git branch -M baz bam should succeed when baz is checked out' '
197 git checkout -b baz &&
198 git branch bam &&
199 git branch -M baz bam &&
200 test $(git rev-parse --abbrev-ref HEAD) = bam
203 test_expect_success 'git branch -M baz bam should add entries to .git/logs/HEAD' '
204 msg="Branch: renamed refs/heads/baz to refs/heads/bam" &&
205 grep " $ZERO_OID.*$msg$" .git/logs/HEAD &&
206 grep "^$ZERO_OID.*$msg$" .git/logs/HEAD
209 test_expect_success 'git branch -M should leave orphaned HEAD alone' '
210 git init -b main orphan &&
212 cd orphan &&
213 test_commit initial &&
214 git checkout --orphan lonely &&
215 grep lonely .git/HEAD &&
216 test_path_is_missing .git/refs/head/lonely &&
217 git branch -M main mistress &&
218 grep lonely .git/HEAD
222 test_expect_success 'resulting reflog can be shown by log -g' '
223 oid=$(git rev-parse HEAD) &&
224 cat >expect <<-EOF &&
225 HEAD@{0} $oid $msg
226 HEAD@{2} $oid checkout: moving from foo to baz
228 git log -g --format="%gd %H %gs" -2 HEAD >actual &&
229 test_cmp expect actual
232 test_expect_success 'git branch -M baz bam should succeed when baz is checked out as linked working tree' '
233 git checkout main &&
234 git worktree add -b baz bazdir &&
235 git worktree add -f bazdir2 baz &&
236 git branch -M baz bam &&
237 test $(git -C bazdir rev-parse --abbrev-ref HEAD) = bam &&
238 test $(git -C bazdir2 rev-parse --abbrev-ref HEAD) = bam &&
239 rm -r bazdir bazdir2 &&
240 git worktree prune
243 test_expect_success 'git branch -M fails if updating any linked working tree fails' '
244 git worktree add -b baz bazdir1 &&
245 git worktree add -f bazdir2 baz &&
246 touch .git/worktrees/bazdir1/HEAD.lock &&
247 test_must_fail git branch -M baz bam &&
248 test $(git -C bazdir2 rev-parse --abbrev-ref HEAD) = bam &&
249 git branch -M bam baz &&
250 rm .git/worktrees/bazdir1/HEAD.lock &&
251 touch .git/worktrees/bazdir2/HEAD.lock &&
252 test_must_fail git branch -M baz bam &&
253 test $(git -C bazdir1 rev-parse --abbrev-ref HEAD) = bam &&
254 rm -rf bazdir1 bazdir2 &&
255 git worktree prune
258 test_expect_success 'git branch -M baz bam should succeed within a worktree in which baz is checked out' '
259 git checkout -b baz &&
260 git worktree add -f bazdir baz &&
262 cd bazdir &&
263 git branch -M baz bam &&
264 echo bam >expect &&
265 git rev-parse --abbrev-ref HEAD >actual &&
266 test_cmp expect actual
267 ) &&
268 echo bam >expect &&
269 git rev-parse --abbrev-ref HEAD >actual &&
270 test_cmp expect actual &&
271 rm -r bazdir &&
272 git worktree prune
275 test_expect_success 'git branch -M main should work when main is checked out' '
276 git checkout main &&
277 git branch -M main
280 test_expect_success 'git branch -M main main should work when main is checked out' '
281 git checkout main &&
282 git branch -M main main
285 test_expect_success 'git branch -M topic topic should work when main is checked out' '
286 git checkout main &&
287 git branch topic &&
288 git branch -M topic topic
291 test_expect_success 'git branch -M and -C fail on detached HEAD' '
292 git checkout HEAD^{} &&
293 test_when_finished git checkout - &&
294 echo "fatal: cannot rename the current branch while not on any." >expect &&
295 test_must_fail git branch -M must-fail 2>err &&
296 test_cmp expect err &&
297 echo "fatal: cannot copy the current branch while not on any." >expect &&
298 test_must_fail git branch -C must-fail 2>err &&
299 test_cmp expect err
302 test_expect_success 'git branch -m should work with orphan branches' '
303 test_when_finished git checkout - &&
304 test_when_finished git worktree remove -f wt &&
305 git worktree add wt --detach &&
306 # rename orphan in another worktreee
307 git -C wt checkout --orphan orphan-foo-wt &&
308 git branch -m orphan-foo-wt orphan-bar-wt &&
309 test orphan-bar-wt=$(git -C orphan-worktree branch --show-current) &&
310 # rename orphan in the current worktree
311 git checkout --orphan orphan-foo &&
312 git branch -m orphan-foo orphan-bar &&
313 test orphan-bar=$(git branch --show-current)
316 test_expect_success 'git branch -d on orphan HEAD (merged)' '
317 test_when_finished git checkout main &&
318 git checkout --orphan orphan &&
319 test_when_finished "rm -rf .git/objects/commit-graph*" &&
320 git commit-graph write --reachable &&
321 git branch --track to-delete main &&
322 git branch -d to-delete
325 test_expect_success 'git branch -d on orphan HEAD (merged, graph)' '
326 test_when_finished git checkout main &&
327 git checkout --orphan orphan &&
328 git branch --track to-delete main &&
329 git branch -d to-delete
332 test_expect_success 'git branch -d on orphan HEAD (unmerged)' '
333 test_when_finished git checkout main &&
334 git checkout --orphan orphan &&
335 test_when_finished "git branch -D to-delete" &&
336 git branch to-delete main &&
337 test_must_fail git branch -d to-delete 2>err &&
338 grep "not fully merged" err
341 test_expect_success 'git branch -d on orphan HEAD (unmerged, graph)' '
342 test_when_finished git checkout main &&
343 git checkout --orphan orphan &&
344 test_when_finished "git branch -D to-delete" &&
345 git branch to-delete main &&
346 test_when_finished "rm -rf .git/objects/commit-graph*" &&
347 git commit-graph write --reachable &&
348 test_must_fail git branch -d to-delete 2>err &&
349 grep "not fully merged" err
352 test_expect_success 'git branch -v -d t should work' '
353 git branch t &&
354 git rev-parse --verify refs/heads/t &&
355 git branch -v -d t &&
356 test_must_fail git rev-parse --verify refs/heads/t
359 test_expect_success 'git branch -v -m t s should work' '
360 git branch t &&
361 git rev-parse --verify refs/heads/t &&
362 git branch -v -m t s &&
363 test_must_fail git rev-parse --verify refs/heads/t &&
364 git rev-parse --verify refs/heads/s &&
365 git branch -d s
368 test_expect_success 'git branch -m -d t s should fail' '
369 git branch t &&
370 git rev-parse refs/heads/t &&
371 test_must_fail git branch -m -d t s &&
372 git branch -d t &&
373 test_must_fail git rev-parse refs/heads/t
376 test_expect_success 'git branch --list -d t should fail' '
377 git branch t &&
378 git rev-parse refs/heads/t &&
379 test_must_fail git branch --list -d t &&
380 git branch -d t &&
381 test_must_fail git rev-parse refs/heads/t
384 test_expect_success 'deleting checked-out branch from repo that is a submodule' '
385 test_when_finished "rm -rf repo1 repo2" &&
387 git init repo1 &&
388 git init repo1/sub &&
389 test_commit -C repo1/sub x &&
390 test_config_global protocol.file.allow always &&
391 git -C repo1 submodule add ./sub &&
392 git -C repo1 commit -m "adding sub" &&
394 git clone --recurse-submodules repo1 repo2 &&
395 git -C repo2/sub checkout -b work &&
396 test_must_fail git -C repo2/sub branch -D work
399 test_expect_success 'bare main worktree has HEAD at branch deleted by secondary worktree' '
400 test_when_finished "rm -rf nonbare base secondary" &&
402 git init -b main nonbare &&
403 test_commit -C nonbare x &&
404 git clone --bare nonbare bare &&
405 git -C bare worktree add --detach ../secondary main &&
406 git -C secondary branch -D main
409 test_expect_success 'git branch --list -v with --abbrev' '
410 test_when_finished "git branch -D t" &&
411 git branch t &&
412 git branch -v --list t >actual.default &&
413 git branch -v --list --abbrev t >actual.abbrev &&
414 test_cmp actual.default actual.abbrev &&
416 git branch -v --list --no-abbrev t >actual.noabbrev &&
417 git branch -v --list --abbrev=0 t >actual.0abbrev &&
418 git -c core.abbrev=no branch -v --list t >actual.noabbrev-conf &&
419 test_cmp actual.noabbrev actual.0abbrev &&
420 test_cmp actual.noabbrev actual.noabbrev-conf &&
422 git branch -v --list --abbrev=36 t >actual.36abbrev &&
423 # how many hexdigits are used?
424 read name objdefault rest <actual.abbrev &&
425 read name obj36 rest <actual.36abbrev &&
426 objfull=$(git rev-parse --verify t) &&
428 # are we really getting abbreviations?
429 test "$obj36" != "$objdefault" &&
430 expr "$obj36" : "$objdefault" >/dev/null &&
431 test "$objfull" != "$obj36" &&
432 expr "$objfull" : "$obj36" >/dev/null
436 test_expect_success 'git branch --column' '
437 COLUMNS=81 git branch --column=column >actual &&
438 cat >expect <<\EOF &&
439 a/b/c bam foo l * main n o/p r
440 abc bar j/k m/m mb o/o q topic
442 test_cmp expect actual
445 test_expect_success 'git branch --column with an extremely long branch name' '
446 long=this/is/a/part/of/long/branch/name &&
447 long=z$long/$long/$long/$long &&
448 test_when_finished "git branch -d $long" &&
449 git branch $long &&
450 COLUMNS=80 git branch --column=column >actual &&
451 cat >expect <<EOF &&
452 a/b/c
460 * main
467 topic
468 $long
470 test_cmp expect actual
473 test_expect_success 'git branch with column.*' '
474 git config column.ui column &&
475 git config column.branch "dense" &&
476 COLUMNS=80 git branch >actual &&
477 git config --unset column.branch &&
478 git config --unset column.ui &&
479 cat >expect <<\EOF &&
480 a/b/c bam foo l * main n o/p r
481 abc bar j/k m/m mb o/o q topic
483 test_cmp expect actual
486 test_expect_success 'git branch --column -v should fail' '
487 test_must_fail git branch --column -v
490 test_expect_success 'git branch -v with column.ui ignored' '
491 git config column.ui column &&
492 COLUMNS=80 git branch -v | cut -c -8 | sed "s/ *$//" >actual &&
493 git config --unset column.ui &&
494 cat >expect <<\EOF &&
495 a/b/c
503 * main
510 topic
512 test_cmp expect actual
515 mv .git/config .git/config-saved
517 test_expect_success SHA1 'git branch -m q q2 without config should succeed' '
518 git branch -m q q2 &&
519 git branch -m q2 q
522 mv .git/config-saved .git/config
524 git config branch.s/s.dummy Hello
526 test_expect_success 'git branch -m s/s s should work when s/t is deleted' '
527 git branch --create-reflog s/s &&
528 git reflog exists refs/heads/s/s &&
529 git branch --create-reflog s/t &&
530 git reflog exists refs/heads/s/t &&
531 git branch -d s/t &&
532 git branch -m s/s s &&
533 git reflog exists refs/heads/s
536 test_expect_success 'config information was renamed, too' '
537 test $(git config branch.s.dummy) = Hello &&
538 test_must_fail git config branch.s/s.dummy
541 test_expect_success 'git branch -m correctly renames multiple config sections' '
542 test_when_finished "git checkout main" &&
543 git checkout -b source main &&
545 # Assert that a config file with multiple config sections has
546 # those sections preserved...
547 cat >expect <<-\EOF &&
548 branch.dest.key1=value1
549 some.gar.b=age
550 branch.dest.key2=value2
552 cat >config.branch <<\EOF &&
553 ;; Note the lack of -\EOF above & mixed indenting here. This is
554 ;; intentional, we are also testing that the formatting of copied
555 ;; sections is preserved.
557 ;; Comment for source. Tabs
558 [branch "source"]
559 ;; Comment for the source value
560 key1 = value1
561 ;; Comment for some.gar. Spaces
562 [some "gar"]
563 ;; Comment for the some.gar value
564 b = age
565 ;; Comment for source, again. Mixed tabs/spaces.
566 [branch "source"]
567 ;; Comment for the source value, again
568 key2 = value2
570 cat config.branch >>.git/config &&
571 git branch -m source dest &&
572 git config -f .git/config -l | grep -F -e source -e dest -e some.gar >actual &&
573 test_cmp expect actual &&
575 # ...and that the comments for those sections are also
576 # preserved.
577 cat config.branch | sed "s/\"source\"/\"dest\"/" >expect &&
578 sed -n -e "/Note the lack/,\$p" .git/config >actual &&
579 test_cmp expect actual
582 test_expect_success 'git branch -c dumps usage' '
583 test_expect_code 128 git branch -c 2>err &&
584 test_i18ngrep "branch name required" err
587 test_expect_success 'git branch --copy dumps usage' '
588 test_expect_code 128 git branch --copy 2>err &&
589 test_i18ngrep "branch name required" err
592 test_expect_success 'git branch -c d e should work' '
593 git branch --create-reflog d &&
594 git reflog exists refs/heads/d &&
595 git config branch.d.dummy Hello &&
596 git branch -c d e &&
597 git reflog exists refs/heads/d &&
598 git reflog exists refs/heads/e &&
599 echo Hello >expect &&
600 git config branch.e.dummy >actual &&
601 test_cmp expect actual &&
602 echo Hello >expect &&
603 git config branch.d.dummy >actual &&
604 test_cmp expect actual
607 test_expect_success 'git branch --copy is a synonym for -c' '
608 git branch --create-reflog copy &&
609 git reflog exists refs/heads/copy &&
610 git config branch.copy.dummy Hello &&
611 git branch --copy copy copy-to &&
612 git reflog exists refs/heads/copy &&
613 git reflog exists refs/heads/copy-to &&
614 echo Hello >expect &&
615 git config branch.copy.dummy >actual &&
616 test_cmp expect actual &&
617 echo Hello >expect &&
618 git config branch.copy-to.dummy >actual &&
619 test_cmp expect actual
622 test_expect_success 'git branch -c ee ef should copy ee to create branch ef' '
623 git checkout -b ee &&
624 git reflog exists refs/heads/ee &&
625 git config branch.ee.dummy Hello &&
626 git branch -c ee ef &&
627 git reflog exists refs/heads/ee &&
628 git reflog exists refs/heads/ef &&
629 test $(git config branch.ee.dummy) = Hello &&
630 test $(git config branch.ef.dummy) = Hello &&
631 test $(git rev-parse --abbrev-ref HEAD) = ee
634 test_expect_success 'git branch -c f/f g/g should work' '
635 git branch --create-reflog f/f &&
636 git reflog exists refs/heads/f/f &&
637 git config branch.f/f.dummy Hello &&
638 git branch -c f/f g/g &&
639 git reflog exists refs/heads/f/f &&
640 git reflog exists refs/heads/g/g &&
641 test $(git config branch.f/f.dummy) = Hello &&
642 test $(git config branch.g/g.dummy) = Hello
645 test_expect_success 'git branch -c m2 m2 should work' '
646 git branch --create-reflog m2 &&
647 git reflog exists refs/heads/m2 &&
648 git config branch.m2.dummy Hello &&
649 git branch -c m2 m2 &&
650 git reflog exists refs/heads/m2 &&
651 test $(git config branch.m2.dummy) = Hello
654 test_expect_success 'git branch -c zz zz/zz should fail' '
655 git branch --create-reflog zz &&
656 git reflog exists refs/heads/zz &&
657 test_must_fail git branch -c zz zz/zz
660 test_expect_success 'git branch -c b/b b should fail' '
661 git branch --create-reflog b/b &&
662 test_must_fail git branch -c b/b b
665 test_expect_success 'git branch -C o/q o/p should work when o/p exists' '
666 git branch --create-reflog o/q &&
667 git reflog exists refs/heads/o/q &&
668 git reflog exists refs/heads/o/p &&
669 git branch -C o/q o/p
672 test_expect_success 'git branch -c -f o/q o/p should work when o/p exists' '
673 git reflog exists refs/heads/o/q &&
674 git reflog exists refs/heads/o/p &&
675 git branch -c -f o/q o/p
678 test_expect_success 'git branch -c qq rr/qq should fail when rr exists' '
679 git branch qq &&
680 git branch rr &&
681 test_must_fail git branch -c qq rr/qq
684 test_expect_success 'git branch -C b1 b2 should fail when b2 is checked out' '
685 git branch b1 &&
686 git checkout -b b2 &&
687 test_must_fail git branch -C b1 b2
690 test_expect_success 'git branch -C c1 c2 should succeed when c1 is checked out' '
691 git checkout -b c1 &&
692 git branch c2 &&
693 git branch -C c1 c2 &&
694 test $(git rev-parse --abbrev-ref HEAD) = c1
697 test_expect_success 'git branch -C c1 c2 should never touch HEAD' '
698 msg="Branch: copied refs/heads/c1 to refs/heads/c2" &&
699 ! grep "$msg$" .git/logs/HEAD
702 test_expect_success 'git branch -C main should work when main is checked out' '
703 git checkout main &&
704 git branch -C main
707 test_expect_success 'git branch -C main main should work when main is checked out' '
708 git checkout main &&
709 git branch -C main main
712 test_expect_success 'git branch -C main5 main5 should work when main is checked out' '
713 git checkout main &&
714 git branch main5 &&
715 git branch -C main5 main5
718 test_expect_success 'git branch -C ab cd should overwrite existing config for cd' '
719 git branch --create-reflog cd &&
720 git reflog exists refs/heads/cd &&
721 git config branch.cd.dummy CD &&
722 git branch --create-reflog ab &&
723 git reflog exists refs/heads/ab &&
724 git config branch.ab.dummy AB &&
725 git branch -C ab cd &&
726 git reflog exists refs/heads/ab &&
727 git reflog exists refs/heads/cd &&
728 test $(git config branch.ab.dummy) = AB &&
729 test $(git config branch.cd.dummy) = AB
732 test_expect_success 'git branch -c correctly copies multiple config sections' '
733 FOO=1 &&
734 export FOO &&
735 test_when_finished "git checkout main" &&
736 git checkout -b source2 main &&
738 # Assert that a config file with multiple config sections has
739 # those sections preserved...
740 cat >expect <<-\EOF &&
741 branch.source2.key1=value1
742 branch.dest2.key1=value1
743 more.gar.b=age
744 branch.source2.key2=value2
745 branch.dest2.key2=value2
747 cat >config.branch <<\EOF &&
748 ;; Note the lack of -\EOF above & mixed indenting here. This is
749 ;; intentional, we are also testing that the formatting of copied
750 ;; sections is preserved.
752 ;; Comment for source2. Tabs
753 [branch "source2"]
754 ;; Comment for the source2 value
755 key1 = value1
756 ;; Comment for more.gar. Spaces
757 [more "gar"]
758 ;; Comment for the more.gar value
759 b = age
760 ;; Comment for source2, again. Mixed tabs/spaces.
761 [branch "source2"]
762 ;; Comment for the source2 value, again
763 key2 = value2
765 cat config.branch >>.git/config &&
766 git branch -c source2 dest2 &&
767 git config -f .git/config -l | grep -F -e source2 -e dest2 -e more.gar >actual &&
768 test_cmp expect actual &&
770 # ...and that the comments and formatting for those sections
771 # is also preserved.
772 cat >expect <<\EOF &&
773 ;; Comment for source2. Tabs
774 [branch "source2"]
775 ;; Comment for the source2 value
776 key1 = value1
777 ;; Comment for more.gar. Spaces
778 [branch "dest2"]
779 ;; Comment for the source2 value
780 key1 = value1
781 ;; Comment for more.gar. Spaces
782 [more "gar"]
783 ;; Comment for the more.gar value
784 b = age
785 ;; Comment for source2, again. Mixed tabs/spaces.
786 [branch "source2"]
787 ;; Comment for the source2 value, again
788 key2 = value2
789 [branch "dest2"]
790 ;; Comment for the source2 value, again
791 key2 = value2
793 sed -n -e "/Comment for source2/,\$p" .git/config >actual &&
794 test_cmp expect actual
797 test_expect_success 'deleting a symref' '
798 git branch target &&
799 git symbolic-ref refs/heads/symref refs/heads/target &&
800 echo "Deleted branch symref (was refs/heads/target)." >expect &&
801 git branch -d symref >actual &&
802 test_path_is_file .git/refs/heads/target &&
803 test_path_is_missing .git/refs/heads/symref &&
804 test_cmp expect actual
807 test_expect_success 'deleting a dangling symref' '
808 git symbolic-ref refs/heads/dangling-symref nowhere &&
809 test_path_is_file .git/refs/heads/dangling-symref &&
810 echo "Deleted branch dangling-symref (was nowhere)." >expect &&
811 git branch -d dangling-symref >actual &&
812 test_path_is_missing .git/refs/heads/dangling-symref &&
813 test_cmp expect actual
816 test_expect_success 'deleting a self-referential symref' '
817 git symbolic-ref refs/heads/self-reference refs/heads/self-reference &&
818 test_path_is_file .git/refs/heads/self-reference &&
819 echo "Deleted branch self-reference (was refs/heads/self-reference)." >expect &&
820 git branch -d self-reference >actual &&
821 test_path_is_missing .git/refs/heads/self-reference &&
822 test_cmp expect actual
825 test_expect_success 'renaming a symref is not allowed' '
826 git symbolic-ref refs/heads/topic refs/heads/main &&
827 test_must_fail git branch -m topic new-topic &&
828 git symbolic-ref refs/heads/topic &&
829 test_path_is_file .git/refs/heads/main &&
830 test_path_is_missing .git/refs/heads/new-topic
833 test_expect_success SYMLINKS 'git branch -m u v should fail when the reflog for u is a symlink' '
834 git branch --create-reflog u &&
835 mv .git/logs/refs/heads/u real-u &&
836 ln -s real-u .git/logs/refs/heads/u &&
837 test_must_fail git branch -m u v
840 test_expect_success SYMLINKS 'git branch -m with symlinked .git/refs' '
841 test_when_finished "rm -rf subdir" &&
842 git init --bare subdir &&
844 rm -rfv subdir/refs subdir/objects subdir/packed-refs &&
845 ln -s ../.git/refs subdir/refs &&
846 ln -s ../.git/objects subdir/objects &&
847 ln -s ../.git/packed-refs subdir/packed-refs &&
849 git -C subdir rev-parse --absolute-git-dir >subdir.dir &&
850 git rev-parse --absolute-git-dir >our.dir &&
851 ! test_cmp subdir.dir our.dir &&
853 git -C subdir log &&
854 git -C subdir branch rename-src &&
855 git rev-parse rename-src >expect &&
856 git -C subdir branch -m rename-src rename-dest &&
857 git rev-parse rename-dest >actual &&
858 test_cmp expect actual &&
859 git branch -D rename-dest
862 test_expect_success 'test tracking setup via --track' '
863 git config remote.local.url . &&
864 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
865 (git show-ref -q refs/remotes/local/main || git fetch local) &&
866 git branch --track my1 local/main &&
867 test $(git config branch.my1.remote) = local &&
868 test $(git config branch.my1.merge) = refs/heads/main
871 test_expect_success 'test tracking setup (non-wildcard, matching)' '
872 git config remote.local.url . &&
873 git config remote.local.fetch refs/heads/main:refs/remotes/local/main &&
874 (git show-ref -q refs/remotes/local/main || git fetch local) &&
875 git branch --track my4 local/main &&
876 test $(git config branch.my4.remote) = local &&
877 test $(git config branch.my4.merge) = refs/heads/main
880 test_expect_success 'tracking setup fails on non-matching refspec' '
881 git config remote.local.url . &&
882 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
883 (git show-ref -q refs/remotes/local/main || git fetch local) &&
884 git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
885 test_must_fail git branch --track my5 local/main &&
886 test_must_fail git config branch.my5.remote &&
887 test_must_fail git config branch.my5.merge
890 test_expect_success 'test tracking setup via config' '
891 git config branch.autosetupmerge true &&
892 git config remote.local.url . &&
893 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
894 (git show-ref -q refs/remotes/local/main || git fetch local) &&
895 git branch my3 local/main &&
896 test $(git config branch.my3.remote) = local &&
897 test $(git config branch.my3.merge) = refs/heads/main
900 test_expect_success 'test overriding tracking setup via --no-track' '
901 git config branch.autosetupmerge true &&
902 git config remote.local.url . &&
903 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
904 (git show-ref -q refs/remotes/local/main || git fetch local) &&
905 git branch --no-track my2 local/main &&
906 git config branch.autosetupmerge false &&
907 ! test "$(git config branch.my2.remote)" = local &&
908 ! test "$(git config branch.my2.merge)" = refs/heads/main
911 test_expect_success 'no tracking without .fetch entries' '
912 git config branch.autosetupmerge true &&
913 git branch my6 s &&
914 git config branch.autosetupmerge false &&
915 test -z "$(git config branch.my6.remote)" &&
916 test -z "$(git config branch.my6.merge)"
919 test_expect_success 'test tracking setup via --track but deeper' '
920 git config remote.local.url . &&
921 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
922 (git show-ref -q refs/remotes/local/o/o || git fetch local) &&
923 git branch --track my7 local/o/o &&
924 test "$(git config branch.my7.remote)" = local &&
925 test "$(git config branch.my7.merge)" = refs/heads/o/o
928 test_expect_success 'test deleting branch deletes branch config' '
929 git branch -d my7 &&
930 test -z "$(git config branch.my7.remote)" &&
931 test -z "$(git config branch.my7.merge)"
934 test_expect_success 'test deleting branch without config' '
935 git branch my7 s &&
936 sha1=$(git rev-parse my7 | cut -c 1-7) &&
937 echo "Deleted branch my7 (was $sha1)." >expect &&
938 git branch -d my7 >actual 2>&1 &&
939 test_cmp expect actual
942 test_expect_success 'deleting currently checked out branch fails' '
943 git worktree add -b my7 my7 &&
944 test_must_fail git -C my7 branch -d my7 &&
945 test_must_fail git branch -d my7 2>actual &&
946 grep "^error: Cannot delete branch .my7. used by worktree at " actual &&
947 rm -r my7 &&
948 git worktree prune
951 test_expect_success 'deleting in-use branch fails' '
952 git worktree add my7 &&
953 test_commit -C my7 bt7 &&
954 git -C my7 bisect start HEAD HEAD~2 &&
955 test_must_fail git -C my7 branch -d my7 &&
956 test_must_fail git branch -d my7 2>actual &&
957 grep "^error: Cannot delete branch .my7. used by worktree at " actual &&
958 rm -r my7 &&
959 git worktree prune
962 test_expect_success 'test --track without .fetch entries' '
963 git branch --track my8 &&
964 test "$(git config branch.my8.remote)" &&
965 test "$(git config branch.my8.merge)"
968 test_expect_success 'branch from non-branch HEAD w/autosetupmerge=always' '
969 git config branch.autosetupmerge always &&
970 git branch my9 HEAD^ &&
971 git config branch.autosetupmerge false
974 test_expect_success 'branch from non-branch HEAD w/--track causes failure' '
975 test_must_fail git branch --track my10 HEAD^
978 test_expect_success 'branch from tag w/--track causes failure' '
979 git tag foobar &&
980 test_must_fail git branch --track my11 foobar
983 test_expect_success 'simple tracking works when remote branch name matches' '
984 test_when_finished "rm -rf otherserver" &&
985 git init otherserver &&
986 test_commit -C otherserver my_commit 1 &&
987 git -C otherserver branch feature &&
988 test_config branch.autosetupmerge simple &&
989 test_config remote.otherserver.url otherserver &&
990 test_config remote.otherserver.fetch refs/heads/*:refs/remotes/otherserver/* &&
991 git fetch otherserver &&
992 git branch feature otherserver/feature &&
993 test_cmp_config otherserver branch.feature.remote &&
994 test_cmp_config refs/heads/feature branch.feature.merge
997 test_expect_success 'simple tracking skips when remote branch name does not match' '
998 test_config branch.autosetupmerge simple &&
999 test_config remote.local.url . &&
1000 test_config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1001 git fetch local &&
1002 git branch my-other local/main &&
1003 test_cmp_config "" --default "" branch.my-other.remote &&
1004 test_cmp_config "" --default "" branch.my-other.merge
1007 test_expect_success 'simple tracking skips when remote ref is not a branch' '
1008 test_config branch.autosetupmerge simple &&
1009 test_config remote.localtags.url . &&
1010 test_config remote.localtags.fetch refs/tags/*:refs/remotes/localtags/* &&
1011 git tag mytag12 main &&
1012 git fetch localtags &&
1013 git branch mytag12 localtags/mytag12 &&
1014 test_cmp_config "" --default "" branch.mytag12.remote &&
1015 test_cmp_config "" --default "" branch.mytag12.merge
1018 test_expect_success '--set-upstream-to fails on multiple branches' '
1019 echo "fatal: too many arguments to set new upstream" >expect &&
1020 test_must_fail git branch --set-upstream-to main a b c 2>err &&
1021 test_cmp expect err
1024 test_expect_success '--set-upstream-to fails on detached HEAD' '
1025 git checkout HEAD^{} &&
1026 test_when_finished git checkout - &&
1027 echo "fatal: could not set upstream of HEAD to main when it does not point to any branch." >expect &&
1028 test_must_fail git branch --set-upstream-to main 2>err &&
1029 test_cmp expect err
1032 test_expect_success '--set-upstream-to fails on a missing dst branch' '
1033 echo "fatal: branch '"'"'does-not-exist'"'"' does not exist" >expect &&
1034 test_must_fail git branch --set-upstream-to main does-not-exist 2>err &&
1035 test_cmp expect err
1038 test_expect_success '--set-upstream-to fails on a missing src branch' '
1039 test_must_fail git branch --set-upstream-to does-not-exist main 2>err &&
1040 test_i18ngrep "the requested upstream branch '"'"'does-not-exist'"'"' does not exist" err
1043 test_expect_success '--set-upstream-to fails on a non-ref' '
1044 echo "fatal: cannot set up tracking information; starting point '"'"'HEAD^{}'"'"' is not a branch" >expect &&
1045 test_must_fail git branch --set-upstream-to HEAD^{} 2>err &&
1046 test_cmp expect err
1049 test_expect_success '--set-upstream-to fails on locked config' '
1050 test_when_finished "rm -f .git/config.lock" &&
1051 >.git/config.lock &&
1052 git branch locked &&
1053 test_must_fail git branch --set-upstream-to locked 2>err &&
1054 test_i18ngrep "could not lock config file .git/config" err
1057 test_expect_success 'use --set-upstream-to modify HEAD' '
1058 test_config branch.main.remote foo &&
1059 test_config branch.main.merge foo &&
1060 git branch my12 &&
1061 git branch --set-upstream-to my12 &&
1062 test "$(git config branch.main.remote)" = "." &&
1063 test "$(git config branch.main.merge)" = "refs/heads/my12"
1066 test_expect_success 'use --set-upstream-to modify a particular branch' '
1067 git branch my13 &&
1068 git branch --set-upstream-to main my13 &&
1069 test_when_finished "git branch --unset-upstream my13" &&
1070 test "$(git config branch.my13.remote)" = "." &&
1071 test "$(git config branch.my13.merge)" = "refs/heads/main"
1074 test_expect_success '--unset-upstream should fail if given a non-existent branch' '
1075 echo "fatal: Branch '"'"'i-dont-exist'"'"' has no upstream information" >expect &&
1076 test_must_fail git branch --unset-upstream i-dont-exist 2>err &&
1077 test_cmp expect err
1080 test_expect_success '--unset-upstream should fail if config is locked' '
1081 test_when_finished "rm -f .git/config.lock" &&
1082 git branch --set-upstream-to locked &&
1083 >.git/config.lock &&
1084 test_must_fail git branch --unset-upstream 2>err &&
1085 test_i18ngrep "could not lock config file .git/config" err
1088 test_expect_success 'test --unset-upstream on HEAD' '
1089 git branch my14 &&
1090 test_config branch.main.remote foo &&
1091 test_config branch.main.merge foo &&
1092 git branch --set-upstream-to my14 &&
1093 git branch --unset-upstream &&
1094 test_must_fail git config branch.main.remote &&
1095 test_must_fail git config branch.main.merge &&
1096 # fail for a branch without upstream set
1097 echo "fatal: Branch '"'"'main'"'"' has no upstream information" >expect &&
1098 test_must_fail git branch --unset-upstream 2>err &&
1099 test_cmp expect err
1102 test_expect_success '--unset-upstream should fail on multiple branches' '
1103 echo "fatal: too many arguments to unset upstream" >expect &&
1104 test_must_fail git branch --unset-upstream a b c 2>err &&
1105 test_cmp expect err
1108 test_expect_success '--unset-upstream should fail on detached HEAD' '
1109 git checkout HEAD^{} &&
1110 test_when_finished git checkout - &&
1111 echo "fatal: could not unset upstream of HEAD when it does not point to any branch." >expect &&
1112 test_must_fail git branch --unset-upstream 2>err &&
1113 test_cmp expect err
1116 test_expect_success 'test --unset-upstream on a particular branch' '
1117 git branch my15 &&
1118 git branch --set-upstream-to main my14 &&
1119 git branch --unset-upstream my14 &&
1120 test_must_fail git config branch.my14.remote &&
1121 test_must_fail git config branch.my14.merge
1124 test_expect_success 'disabled option --set-upstream fails' '
1125 test_must_fail git branch --set-upstream origin/main
1128 test_expect_success '--set-upstream-to notices an error to set branch as own upstream' "
1129 git branch --set-upstream-to refs/heads/my13 my13 2>actual &&
1130 cat >expect <<-\EOF &&
1131 warning: not setting branch 'my13' as its own upstream
1133 test_expect_code 1 git config branch.my13.remote &&
1134 test_expect_code 1 git config branch.my13.merge &&
1135 test_cmp expect actual
1138 # Keep this test last, as it changes the current branch
1139 cat >expect <<EOF
1140 $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from main
1142 test_expect_success 'git checkout -b g/h/i -l should create a branch and a log' '
1143 GIT_COMMITTER_DATE="2005-05-26 23:30" \
1144 git checkout -b g/h/i -l main &&
1145 test_path_is_file .git/refs/heads/g/h/i &&
1146 test_path_is_file .git/logs/refs/heads/g/h/i &&
1147 test_cmp expect .git/logs/refs/heads/g/h/i
1150 test_expect_success 'checkout -b makes reflog by default' '
1151 git checkout main &&
1152 git config --unset core.logAllRefUpdates &&
1153 git checkout -b alpha &&
1154 git rev-parse --verify alpha@{0}
1157 test_expect_success 'checkout -b does not make reflog when core.logAllRefUpdates = false' '
1158 git checkout main &&
1159 git config core.logAllRefUpdates false &&
1160 git checkout -b beta &&
1161 test_must_fail git rev-parse --verify beta@{0}
1164 test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates = false' '
1165 git checkout main &&
1166 git checkout -lb gamma &&
1167 git config --unset core.logAllRefUpdates &&
1168 git rev-parse --verify gamma@{0}
1171 test_expect_success 'avoid ambiguous track and advise' '
1172 git config branch.autosetupmerge true &&
1173 git config remote.ambi1.url lalala &&
1174 git config remote.ambi1.fetch refs/heads/lalala:refs/heads/main &&
1175 git config remote.ambi2.url lilili &&
1176 git config remote.ambi2.fetch refs/heads/lilili:refs/heads/main &&
1177 cat <<-EOF >expected &&
1178 fatal: not tracking: ambiguous information for ref '\''refs/heads/main'\''
1179 hint: There are multiple remotes whose fetch refspecs map to the remote
1180 hint: tracking ref '\''refs/heads/main'\'':
1181 hint: ambi1
1182 hint: ambi2
1183 hint: ''
1184 hint: This is typically a configuration error.
1185 hint: ''
1186 hint: To support setting up tracking branches, ensure that
1187 hint: different remotes'\'' fetch refspecs map into different
1188 hint: tracking namespaces.
1190 test_must_fail git branch all1 main 2>actual &&
1191 test_cmp expected actual &&
1192 test -z "$(git config branch.all1.merge)"
1195 test_expect_success 'autosetuprebase local on a tracked local branch' '
1196 git config remote.local.url . &&
1197 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1198 git config branch.autosetuprebase local &&
1199 (git show-ref -q refs/remotes/local/o || git fetch local) &&
1200 git branch mybase &&
1201 git branch --track myr1 mybase &&
1202 test "$(git config branch.myr1.remote)" = . &&
1203 test "$(git config branch.myr1.merge)" = refs/heads/mybase &&
1204 test "$(git config branch.myr1.rebase)" = true
1207 test_expect_success 'autosetuprebase always on a tracked local branch' '
1208 git config remote.local.url . &&
1209 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1210 git config branch.autosetuprebase always &&
1211 (git show-ref -q refs/remotes/local/o || git fetch local) &&
1212 git branch mybase2 &&
1213 git branch --track myr2 mybase &&
1214 test "$(git config branch.myr2.remote)" = . &&
1215 test "$(git config branch.myr2.merge)" = refs/heads/mybase &&
1216 test "$(git config branch.myr2.rebase)" = true
1219 test_expect_success 'autosetuprebase remote on a tracked local branch' '
1220 git config remote.local.url . &&
1221 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1222 git config branch.autosetuprebase remote &&
1223 (git show-ref -q refs/remotes/local/o || git fetch local) &&
1224 git branch mybase3 &&
1225 git branch --track myr3 mybase2 &&
1226 test "$(git config branch.myr3.remote)" = . &&
1227 test "$(git config branch.myr3.merge)" = refs/heads/mybase2 &&
1228 ! test "$(git config branch.myr3.rebase)" = true
1231 test_expect_success 'autosetuprebase never on a tracked local branch' '
1232 git config remote.local.url . &&
1233 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1234 git config branch.autosetuprebase never &&
1235 (git show-ref -q refs/remotes/local/o || git fetch local) &&
1236 git branch mybase4 &&
1237 git branch --track myr4 mybase2 &&
1238 test "$(git config branch.myr4.remote)" = . &&
1239 test "$(git config branch.myr4.merge)" = refs/heads/mybase2 &&
1240 ! test "$(git config branch.myr4.rebase)" = true
1243 test_expect_success 'autosetuprebase local on a tracked remote branch' '
1244 git config remote.local.url . &&
1245 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1246 git config branch.autosetuprebase local &&
1247 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1248 git branch --track myr5 local/main &&
1249 test "$(git config branch.myr5.remote)" = local &&
1250 test "$(git config branch.myr5.merge)" = refs/heads/main &&
1251 ! test "$(git config branch.myr5.rebase)" = true
1254 test_expect_success 'autosetuprebase never on a tracked remote branch' '
1255 git config remote.local.url . &&
1256 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1257 git config branch.autosetuprebase never &&
1258 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1259 git branch --track myr6 local/main &&
1260 test "$(git config branch.myr6.remote)" = local &&
1261 test "$(git config branch.myr6.merge)" = refs/heads/main &&
1262 ! test "$(git config branch.myr6.rebase)" = true
1265 test_expect_success 'autosetuprebase remote on a tracked remote branch' '
1266 git config remote.local.url . &&
1267 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1268 git config branch.autosetuprebase remote &&
1269 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1270 git branch --track myr7 local/main &&
1271 test "$(git config branch.myr7.remote)" = local &&
1272 test "$(git config branch.myr7.merge)" = refs/heads/main &&
1273 test "$(git config branch.myr7.rebase)" = true
1276 test_expect_success 'autosetuprebase always on a tracked remote branch' '
1277 git config remote.local.url . &&
1278 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1279 git config branch.autosetuprebase remote &&
1280 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1281 git branch --track myr8 local/main &&
1282 test "$(git config branch.myr8.remote)" = local &&
1283 test "$(git config branch.myr8.merge)" = refs/heads/main &&
1284 test "$(git config branch.myr8.rebase)" = true
1287 test_expect_success 'autosetuprebase unconfigured on a tracked remote branch' '
1288 git config --unset branch.autosetuprebase &&
1289 git config remote.local.url . &&
1290 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1291 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1292 git branch --track myr9 local/main &&
1293 test "$(git config branch.myr9.remote)" = local &&
1294 test "$(git config branch.myr9.merge)" = refs/heads/main &&
1295 test "z$(git config branch.myr9.rebase)" = z
1298 test_expect_success 'autosetuprebase unconfigured on a tracked local branch' '
1299 git config remote.local.url . &&
1300 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1301 (git show-ref -q refs/remotes/local/o || git fetch local) &&
1302 git branch mybase10 &&
1303 git branch --track myr10 mybase2 &&
1304 test "$(git config branch.myr10.remote)" = . &&
1305 test "$(git config branch.myr10.merge)" = refs/heads/mybase2 &&
1306 test "z$(git config branch.myr10.rebase)" = z
1309 test_expect_success 'autosetuprebase unconfigured on untracked local branch' '
1310 git config remote.local.url . &&
1311 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1312 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1313 git branch --no-track myr11 mybase2 &&
1314 test "z$(git config branch.myr11.remote)" = z &&
1315 test "z$(git config branch.myr11.merge)" = z &&
1316 test "z$(git config branch.myr11.rebase)" = z
1319 test_expect_success 'autosetuprebase unconfigured on untracked remote branch' '
1320 git config remote.local.url . &&
1321 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1322 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1323 git branch --no-track myr12 local/main &&
1324 test "z$(git config branch.myr12.remote)" = z &&
1325 test "z$(git config branch.myr12.merge)" = z &&
1326 test "z$(git config branch.myr12.rebase)" = z
1329 test_expect_success 'autosetuprebase never on an untracked local branch' '
1330 git config branch.autosetuprebase never &&
1331 git config remote.local.url . &&
1332 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1333 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1334 git branch --no-track myr13 mybase2 &&
1335 test "z$(git config branch.myr13.remote)" = z &&
1336 test "z$(git config branch.myr13.merge)" = z &&
1337 test "z$(git config branch.myr13.rebase)" = z
1340 test_expect_success 'autosetuprebase local on an untracked local branch' '
1341 git config branch.autosetuprebase local &&
1342 git config remote.local.url . &&
1343 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1344 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1345 git branch --no-track myr14 mybase2 &&
1346 test "z$(git config branch.myr14.remote)" = z &&
1347 test "z$(git config branch.myr14.merge)" = z &&
1348 test "z$(git config branch.myr14.rebase)" = z
1351 test_expect_success 'autosetuprebase remote on an untracked local branch' '
1352 git config branch.autosetuprebase remote &&
1353 git config remote.local.url . &&
1354 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1355 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1356 git branch --no-track myr15 mybase2 &&
1357 test "z$(git config branch.myr15.remote)" = z &&
1358 test "z$(git config branch.myr15.merge)" = z &&
1359 test "z$(git config branch.myr15.rebase)" = z
1362 test_expect_success 'autosetuprebase always on an untracked local branch' '
1363 git config branch.autosetuprebase always &&
1364 git config remote.local.url . &&
1365 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1366 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1367 git branch --no-track myr16 mybase2 &&
1368 test "z$(git config branch.myr16.remote)" = z &&
1369 test "z$(git config branch.myr16.merge)" = z &&
1370 test "z$(git config branch.myr16.rebase)" = z
1373 test_expect_success 'autosetuprebase never on an untracked remote branch' '
1374 git config branch.autosetuprebase never &&
1375 git config remote.local.url . &&
1376 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1377 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1378 git branch --no-track myr17 local/main &&
1379 test "z$(git config branch.myr17.remote)" = z &&
1380 test "z$(git config branch.myr17.merge)" = z &&
1381 test "z$(git config branch.myr17.rebase)" = z
1384 test_expect_success 'autosetuprebase local on an untracked remote branch' '
1385 git config branch.autosetuprebase local &&
1386 git config remote.local.url . &&
1387 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1388 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1389 git branch --no-track myr18 local/main &&
1390 test "z$(git config branch.myr18.remote)" = z &&
1391 test "z$(git config branch.myr18.merge)" = z &&
1392 test "z$(git config branch.myr18.rebase)" = z
1395 test_expect_success 'autosetuprebase remote on an untracked remote branch' '
1396 git config branch.autosetuprebase remote &&
1397 git config remote.local.url . &&
1398 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1399 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1400 git branch --no-track myr19 local/main &&
1401 test "z$(git config branch.myr19.remote)" = z &&
1402 test "z$(git config branch.myr19.merge)" = z &&
1403 test "z$(git config branch.myr19.rebase)" = z
1406 test_expect_success 'autosetuprebase always on an untracked remote branch' '
1407 git config branch.autosetuprebase always &&
1408 git config remote.local.url . &&
1409 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
1410 (git show-ref -q refs/remotes/local/main || git fetch local) &&
1411 git branch --no-track myr20 local/main &&
1412 test "z$(git config branch.myr20.remote)" = z &&
1413 test "z$(git config branch.myr20.merge)" = z &&
1414 test "z$(git config branch.myr20.rebase)" = z
1417 test_expect_success 'autosetuprebase always on detached HEAD' '
1418 git config branch.autosetupmerge always &&
1419 test_when_finished git checkout main &&
1420 git checkout HEAD^0 &&
1421 git branch my11 &&
1422 test -z "$(git config branch.my11.remote)" &&
1423 test -z "$(git config branch.my11.merge)"
1426 test_expect_success 'detect misconfigured autosetuprebase (bad value)' '
1427 git config branch.autosetuprebase garbage &&
1428 test_must_fail git branch
1431 test_expect_success 'detect misconfigured autosetuprebase (no value)' '
1432 git config --unset branch.autosetuprebase &&
1433 echo "[branch] autosetuprebase" >>.git/config &&
1434 test_must_fail git branch &&
1435 git config --unset branch.autosetuprebase
1438 test_expect_success 'attempt to delete a branch without base and unmerged to HEAD' '
1439 git checkout my9 &&
1440 git config --unset branch.my8.merge &&
1441 test_must_fail git branch -d my8
1444 test_expect_success 'attempt to delete a branch merged to its base' '
1445 # we are on my9 which is the initial commit; traditionally
1446 # we would not have allowed deleting my8 that is not merged
1447 # to my9, but it is set to track main that already has my8
1448 git config branch.my8.merge refs/heads/main &&
1449 git branch -d my8
1452 test_expect_success 'attempt to delete a branch merged to its base' '
1453 git checkout main &&
1454 echo Third >>A &&
1455 git commit -m "Third commit" A &&
1456 git branch -t my10 my9 &&
1457 git branch -f my10 HEAD^ &&
1458 # we are on main which is at the third commit, and my10
1459 # is behind us, so traditionally we would have allowed deleting
1460 # it; but my10 is set to track my9 that is further behind.
1461 test_must_fail git branch -d my10
1464 test_expect_success 'branch --delete --force removes dangling branch' '
1465 git checkout main &&
1466 test_commit unstable &&
1467 hash=$(git rev-parse HEAD) &&
1468 objpath=$(echo $hash | sed -e "s|^..|.git/objects/&/|") &&
1469 git branch --no-track dangling &&
1470 mv $objpath $objpath.x &&
1471 test_when_finished "mv $objpath.x $objpath" &&
1472 git branch --delete --force dangling &&
1473 git for-each-ref refs/heads/dangling >actual &&
1474 test_must_be_empty actual
1477 test_expect_success 'use --edit-description' '
1478 EDITOR=: git branch --edit-description &&
1479 test_expect_code 1 git config branch.main.description &&
1481 write_script editor <<-\EOF &&
1482 echo "New contents" >"$1"
1484 EDITOR=./editor git branch --edit-description &&
1485 write_script editor <<-\EOF &&
1486 git stripspace -s <"$1" >"EDITOR_OUTPUT"
1488 EDITOR=./editor git branch --edit-description &&
1489 echo "New contents" >expect &&
1490 test_cmp expect EDITOR_OUTPUT
1493 test_expect_success 'detect typo in branch name when using --edit-description' '
1494 write_script editor <<-\EOF &&
1495 echo "New contents" >"$1"
1497 test_must_fail env EDITOR=./editor git branch --edit-description no-such-branch
1500 test_expect_success 'refuse --edit-description on unborn branch for now' '
1501 test_when_finished "git checkout main" &&
1502 write_script editor <<-\EOF &&
1503 echo "New contents" >"$1"
1505 git checkout --orphan unborn &&
1506 test_must_fail env EDITOR=./editor git branch --edit-description
1509 test_expect_success '--merged catches invalid object names' '
1510 test_must_fail git branch --merged 0000000000000000000000000000000000000000
1513 test_expect_success '--list during rebase' '
1514 test_when_finished "reset_rebase" &&
1515 git checkout main &&
1516 FAKE_LINES="1 edit 2" &&
1517 export FAKE_LINES &&
1518 set_fake_editor &&
1519 git rebase -i HEAD~2 &&
1520 git branch --list >actual &&
1521 test_i18ngrep "rebasing main" actual
1524 test_expect_success '--list during rebase from detached HEAD' '
1525 test_when_finished "reset_rebase && git checkout main" &&
1526 git checkout main^0 &&
1527 oid=$(git rev-parse --short HEAD) &&
1528 FAKE_LINES="1 edit 2" &&
1529 export FAKE_LINES &&
1530 set_fake_editor &&
1531 git rebase -i HEAD~2 &&
1532 git branch --list >actual &&
1533 test_i18ngrep "rebasing detached HEAD $oid" actual
1536 test_expect_success 'tracking with unexpected .fetch refspec' '
1537 rm -rf a b c d &&
1538 git init -b main a &&
1540 cd a &&
1541 test_commit a
1542 ) &&
1543 git init -b main b &&
1545 cd b &&
1546 test_commit b
1547 ) &&
1548 git init -b main c &&
1550 cd c &&
1551 test_commit c &&
1552 git remote add a ../a &&
1553 git remote add b ../b &&
1554 git fetch --all
1555 ) &&
1556 git init -b main d &&
1558 cd d &&
1559 git remote add c ../c &&
1560 git config remote.c.fetch "+refs/remotes/*:refs/remotes/*" &&
1561 git fetch c &&
1562 git branch --track local/a/main remotes/a/main &&
1563 test "$(git config branch.local/a/main.remote)" = "c" &&
1564 test "$(git config branch.local/a/main.merge)" = "refs/remotes/a/main" &&
1565 git rev-parse --verify a >expect &&
1566 git rev-parse --verify local/a/main >actual &&
1567 test_cmp expect actual
1571 test_expect_success 'configured committerdate sort' '
1572 git init -b main sort &&
1574 cd sort &&
1575 git config branch.sort committerdate &&
1576 test_commit initial &&
1577 git checkout -b a &&
1578 test_commit a &&
1579 git checkout -b c &&
1580 test_commit c &&
1581 git checkout -b b &&
1582 test_commit b &&
1583 git branch >actual &&
1584 cat >expect <<-\EOF &&
1585 main
1590 test_cmp expect actual
1594 test_expect_success 'option override configured sort' '
1596 cd sort &&
1597 git config branch.sort committerdate &&
1598 git branch --sort=refname >actual &&
1599 cat >expect <<-\EOF &&
1603 main
1605 test_cmp expect actual
1609 test_expect_success 'invalid sort parameter in configuration' '
1611 cd sort &&
1612 git config branch.sort "v:notvalid" &&
1614 # this works in the "listing" mode, so bad sort key
1615 # is a dying offence.
1616 test_must_fail git branch &&
1618 # these do not need to use sorting, and should all
1619 # succeed
1620 git branch newone main &&
1621 git branch -c newone newerone &&
1622 git branch -m newone newestone &&
1623 git branch -d newerone newestone
1627 test_expect_success 'tracking info copied with --track=inherit' '
1628 git branch --track=inherit foo2 my1 &&
1629 test_cmp_config local branch.foo2.remote &&
1630 test_cmp_config refs/heads/main branch.foo2.merge
1633 test_expect_success 'tracking info copied with autoSetupMerge=inherit' '
1634 test_unconfig branch.autoSetupMerge &&
1635 # default config does not copy tracking info
1636 git branch foo-no-inherit my1 &&
1637 test_cmp_config "" --default "" branch.foo-no-inherit.remote &&
1638 test_cmp_config "" --default "" branch.foo-no-inherit.merge &&
1639 # with autoSetupMerge=inherit, we copy tracking info from my1
1640 test_config branch.autoSetupMerge inherit &&
1641 git branch foo3 my1 &&
1642 test_cmp_config local branch.foo3.remote &&
1643 test_cmp_config refs/heads/main branch.foo3.merge &&
1644 # no tracking info to inherit from main
1645 git branch main2 main &&
1646 test_cmp_config "" --default "" branch.main2.remote &&
1647 test_cmp_config "" --default "" branch.main2.merge
1650 test_expect_success '--track overrides branch.autoSetupMerge' '
1651 test_config branch.autoSetupMerge inherit &&
1652 git branch --track=direct foo4 my1 &&
1653 test_cmp_config . branch.foo4.remote &&
1654 test_cmp_config refs/heads/my1 branch.foo4.merge &&
1655 git branch --no-track foo5 my1 &&
1656 test_cmp_config "" --default "" branch.foo5.remote &&
1657 test_cmp_config "" --default "" branch.foo5.merge
1660 test_done