]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3200-branch.sh
Git 2.28
[thirdparty/git.git] / t / t3200-branch.sh
CommitLineData
a3b427b9
AW
1#!/bin/sh
2#
3# Copyright (c) 2005 Amos Waterland
4#
5
c2d17ba3 6test_description='git branch assorted tests'
a3b427b9 7
a3b427b9 8. ./test-lib.sh
1f537be3 9. "$TEST_DIRECTORY"/lib-rebase.sh
a3b427b9 10
0d158ebb
RR
11test_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." &&
140cd845
FC
18 HEAD=$(git rev-parse --verify HEAD)
19'
0d158ebb
RR
20
21test_expect_success 'git branch --help should not have created a bogus branch' '
01e8d327 22 test_might_fail git branch --man --help </dev/null >/dev/null 2>&1 &&
0d158ebb 23 test_path_is_missing .git/refs/heads/--help
41ac414e 24'
a3b427b9 25
1dacfbcf
NTND
26test_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 ) &&
9a001381 34 test_i18ngrep "[Uu]sage" broken/usage
1dacfbcf
NTND
35'
36
0d158ebb
RR
37test_expect_success 'git branch abc should create a branch' '
38 git branch abc && test_path_is_file .git/refs/heads/abc
39'
08db81a9 40
0d158ebb
RR
41test_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'
08db81a9 44
e3d6539d
DL
45test_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
0cb24fe8
JH
49test_expect_success 'git branch HEAD should fail' '
50 test_must_fail git branch HEAD
51'
8efb8899 52
d7fb7a37 53cat >expect <<EOF
8125a58b 54$ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
d7fb7a37 55EOF
7687f19e 56test_expect_success 'git branch --create-reflog d/e/f should create a branch and a log' '
0d158ebb 57 GIT_COMMITTER_DATE="2005-05-26 23:30" \
7687f19e 58 git -c core.logallrefupdates=false branch --create-reflog d/e/f &&
0d158ebb
RR
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
64test_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 &&
d0ab0584 67 test_must_fail git reflog exists refs/heads/d/e/f
0d158ebb
RR
68'
69
70test_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
76test_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
82test_expect_success 'git branch -m dumps usage' '
83 test_expect_code 128 git branch -m 2>err &&
8054b9a6 84 test_i18ngrep "branch name required" err
0d158ebb
RR
85'
86
12fd3496
DT
87test_expect_success 'git branch -m m broken_symref should work' '
88 test_when_finished "git branch -D broken_symref" &&
7687f19e 89 git branch --create-reflog m &&
12fd3496
DT
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
0d158ebb 96test_expect_success 'git branch -m m m/m should work' '
7687f19e 97 git branch --create-reflog m &&
0d158ebb 98 git branch -m m m/m &&
d0ab0584 99 git reflog exists refs/heads/m/m
0d158ebb
RR
100'
101
102test_expect_success 'git branch -m n/n n should work' '
7687f19e 103 git branch --create-reflog n/n &&
2f139044 104 git branch -m n/n n &&
d0ab0584 105 git reflog exists refs/heads/n
0d158ebb 106'
c976d415 107
bb8efa17
SD
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
111test_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
a1c1d817
JK
125test_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
41ac414e
JH
135test_expect_success 'git branch -m o/o o should fail when o/p exists' '
136 git branch o/o &&
0d158ebb 137 git branch o/p &&
d492b31c 138 test_must_fail git branch -m o/o o
41ac414e 139'
c976d415 140
ff7aa81f
MG
141test_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
146test_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
356e91f2
MG
150test_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
41ac414e
JH
155test_expect_success 'git branch -m q r/q should fail when r exists' '
156 git branch q &&
157 git branch r &&
d492b31c 158 test_must_fail git branch -m q r/q
41ac414e 159'
c976d415 160
55c4a673
CI
161test_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
167test_expect_success 'git branch -M baz bam should succeed when baz is checked out' '
168 git checkout -b baz &&
169 git branch bam &&
70999e9c
KY
170 git branch -M baz bam &&
171 test $(git rev-parse --abbrev-ref HEAD) = bam
172'
173
39ee4c6c 174test_expect_success 'git branch -M baz bam should add entries to .git/logs/HEAD' '
893dbf5b 175 msg="Branch: renamed refs/heads/baz to refs/heads/bam" &&
39ee4c6c
KM
176 grep " 0\{40\}.*$msg$" .git/logs/HEAD &&
177 grep "^0\{40\}.*$msg$" .git/logs/HEAD
893dbf5b
KM
178'
179
31824d18
NTND
180test_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
2272d3e5
JK
193test_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
2272d3e5
JK
197 HEAD@{2} $oid checkout: moving from foo to baz
198 EOF
d08565bf 199 git log -g --format="%gd %H %gs" -2 HEAD >actual &&
2272d3e5
JK
200 test_cmp expect actual
201'
202
70999e9c
KY
203test_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 &&
ab313814
NB
209 test $(git -C bazdir2 rev-parse --abbrev-ref HEAD) = bam &&
210 rm -r bazdir bazdir2 &&
211 git worktree prune
70999e9c
KY
212'
213
214test_expect_success 'git branch -M baz bam should succeed within a worktree in which baz is checked out' '
215 git checkout -b baz &&
ab313814 216 git worktree add -f bazdir baz &&
70999e9c 217 (
ab313814 218 cd bazdir &&
70999e9c
KY
219 git branch -M baz bam &&
220 test $(git rev-parse --abbrev-ref HEAD) = bam
221 ) &&
ab313814
NB
222 test $(git rev-parse --abbrev-ref HEAD) = bam &&
223 rm -r bazdir &&
224 git worktree prune
55c4a673
CI
225'
226
3f59481e
JN
227test_expect_success 'git branch -M master should work when master is checked out' '
228 git checkout master &&
229 git branch -M master
230'
231
232test_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
237test_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
cddd127b
MG
243test_expect_success 'git branch -v -d t should work' '
244 git branch t &&
cbc5cf7c 245 git rev-parse --verify refs/heads/t &&
cddd127b 246 git branch -v -d t &&
cbc5cf7c 247 test_must_fail git rev-parse --verify refs/heads/t
cddd127b
MG
248'
249
250test_expect_success 'git branch -v -m t s should work' '
251 git branch t &&
cbc5cf7c 252 git rev-parse --verify refs/heads/t &&
cddd127b 253 git branch -v -m t s &&
cbc5cf7c
DT
254 test_must_fail git rev-parse --verify refs/heads/t &&
255 git rev-parse --verify refs/heads/s &&
cddd127b
MG
256 git branch -d s
257'
258
259test_expect_success 'git branch -m -d t s should fail' '
260 git branch t &&
cbc5cf7c 261 git rev-parse refs/heads/t &&
cddd127b
MG
262 test_must_fail git branch -m -d t s &&
263 git branch -d t &&
cbc5cf7c 264 test_must_fail git rev-parse refs/heads/t
cddd127b
MG
265'
266
267test_expect_success 'git branch --list -d t should fail' '
268 git branch t &&
cbc5cf7c 269 git rev-parse refs/heads/t &&
cddd127b
MG
270 test_must_fail git branch --list -d t &&
271 git branch -d t &&
cbc5cf7c 272 test_must_fail git rev-parse refs/heads/t
cddd127b
MG
273'
274
f3534c98
JT
275test_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
289test_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
ac5bbc02
JH
299test_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
ebe31ef2
NTND
324test_expect_success 'git branch --column' '
325 COLUMNS=81 git branch --column=column >actual &&
6d504d5b 326 cat >expect <<\EOF &&
e3d6539d
DL
327 a/b/c bam foo l * master mb o/o q
328 abc bar j/k m/m master2 n o/p r
ebe31ef2 329EOF
6d504d5b 330 test_cmp expect actual
ebe31ef2
NTND
331'
332
333test_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 &&
6d504d5b 339 cat >expect <<EOF &&
ebe31ef2
NTND
340 a/b/c
341 abc
342 bam
343 bar
344 foo
345 j/k
346 l
347 m/m
348* master
349 master2
e3d6539d 350 mb
ebe31ef2
NTND
351 n
352 o/o
353 o/p
354 q
355 r
356 $long
357EOF
6d504d5b 358 test_cmp expect actual
ebe31ef2
NTND
359'
360
361test_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 &&
6d504d5b 367 cat >expect <<\EOF &&
e3d6539d
DL
368 a/b/c bam foo l * master mb o/o q
369 abc bar j/k m/m master2 n o/p r
ebe31ef2 370EOF
6d504d5b 371 test_cmp expect actual
ebe31ef2
NTND
372'
373
374test_expect_success 'git branch --column -v should fail' '
375 test_must_fail git branch --column -v
376'
377
378test_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 &&
6d504d5b 382 cat >expect <<\EOF &&
ebe31ef2
NTND
383 a/b/c
384 abc
385 bam
386 bar
387 foo
388 j/k
389 l
390 m/m
391* master
392 master2
e3d6539d 393 mb
ebe31ef2
NTND
394 n
395 o/o
396 o/p
397 q
398 r
399EOF
6d504d5b 400 test_cmp expect actual
ebe31ef2
NTND
401'
402
01ebb9dc
GB
403mv .git/config .git/config-saved
404
49c9a2ff 405test_expect_success SHA1 'git branch -m q q2 without config should succeed' '
5be60078
JH
406 git branch -m q q2 &&
407 git branch -m q2 q
01ebb9dc
GB
408'
409
410mv .git/config-saved .git/config
411
5be60078 412git config branch.s/s.dummy Hello
dc81c58c 413
0d158ebb 414test_expect_success 'git branch -m s/s s should work when s/t is deleted' '
7687f19e 415 git branch --create-reflog s/s &&
d0ab0584 416 git reflog exists refs/heads/s/s &&
7687f19e 417 git branch --create-reflog s/t &&
d0ab0584 418 git reflog exists refs/heads/s/t &&
0d158ebb
RR
419 git branch -d s/t &&
420 git branch -m s/s s &&
d0ab0584 421 git reflog exists refs/heads/s
0d158ebb 422'
c976d415 423
0d158ebb
RR
424test_expect_success 'config information was renamed, too' '
425 test $(git config branch.s.dummy) = Hello &&
b8f354f2 426 test_must_fail git config branch.s/s.dummy
0d158ebb 427'
dc81c58c 428
c8b2cec0
ÆAB
429test_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
457EOF
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
52d59cc6
SD
470test_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
475test_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
480test_expect_success 'git branch -c d e should work' '
7687f19e 481 git branch --create-reflog d &&
52d59cc6
SD
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
495test_expect_success 'git branch --copy is a synonym for -c' '
7687f19e 496 git branch --create-reflog copy &&
52d59cc6
SD
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
e5435ff1 510test_expect_success 'git branch -c ee ef should copy ee to create branch ef' '
52d59cc6
SD
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 &&
e5435ff1 519 test $(git rev-parse --abbrev-ref HEAD) = ee
52d59cc6
SD
520'
521
522test_expect_success 'git branch -c f/f g/g should work' '
7687f19e 523 git branch --create-reflog f/f &&
52d59cc6
SD
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
533test_expect_success 'git branch -c m2 m2 should work' '
7687f19e 534 git branch --create-reflog m2 &&
52d59cc6
SD
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
542test_expect_success 'git branch -c zz zz/zz should fail' '
7687f19e 543 git branch --create-reflog zz &&
52d59cc6
SD
544 git reflog exists refs/heads/zz &&
545 test_must_fail git branch -c zz zz/zz
546'
547
548test_expect_success 'git branch -c b/b b should fail' '
7687f19e 549 git branch --create-reflog b/b &&
52d59cc6
SD
550 test_must_fail git branch -c b/b b
551'
552
553test_expect_success 'git branch -C o/q o/p should work when o/p exists' '
7687f19e 554 git branch --create-reflog o/q &&
52d59cc6
SD
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
560test_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
40c17eb1 566test_expect_success 'git branch -c qq rr/qq should fail when rr exists' '
52d59cc6
SD
567 git branch qq &&
568 git branch rr &&
569 test_must_fail git branch -c qq rr/qq
570'
571
572test_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
578test_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 &&
e5435ff1 582 test $(git rev-parse --abbrev-ref HEAD) = c1
52d59cc6
SD
583'
584
e5435ff1 585test_expect_success 'git branch -C c1 c2 should never touch HEAD' '
52d59cc6 586 msg="Branch: copied refs/heads/c1 to refs/heads/c2" &&
e5435ff1 587 ! grep "$msg$" .git/logs/HEAD
52d59cc6
SD
588'
589
590test_expect_success 'git branch -C master should work when master is checked out' '
591 git checkout master &&
592 git branch -C master
593'
594
595test_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
600test_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
606test_expect_success 'git branch -C ab cd should overwrite existing config for cd' '
7687f19e 607 git branch --create-reflog cd &&
52d59cc6
SD
608 git reflog exists refs/heads/cd &&
609 git config branch.cd.dummy CD &&
7687f19e 610 git branch --create-reflog ab &&
52d59cc6
SD
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
620test_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
652EOF
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
680EOF
681 sed -n -e "/Comment for source2/,\$p" .git/config >actual &&
682 test_cmp expect actual
683'
684
566c7707
RS
685test_expect_success 'deleting a symref' '
686 git branch target &&
687 git symbolic-ref refs/heads/symref refs/heads/target &&
13baa9fe 688 echo "Deleted branch symref (was refs/heads/target)." >expect &&
566c7707
RS
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
0fe700e3
RS
695test_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 &&
13baa9fe 698 echo "Deleted branch dangling-symref (was nowhere)." >expect &&
0fe700e3
RS
699 git branch -d dangling-symref >actual &&
700 test_path_is_missing .git/refs/heads/dangling-symref &&
701 test_i18ncmp expect actual
702'
703
62a2d525
JN
704test_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
0d158ebb 713test_expect_success 'renaming a symref is not allowed' '
eca35a25 714 git symbolic-ref refs/heads/master2 refs/heads/master &&
fa58186c
MV
715 test_must_fail git branch -m master2 master3 &&
716 git symbolic-ref refs/heads/master2 &&
376eb14a
JK
717 test_path_is_file .git/refs/heads/master &&
718 test_path_is_missing .git/refs/heads/master3
eca35a25
MV
719'
720
0d158ebb 721test_expect_success SYMLINKS 'git branch -m u v should fail when the reflog for u is a symlink' '
7687f19e 722 git branch --create-reflog u &&
0d158ebb
RR
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
728test_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
737test_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
41c21f22 746test_expect_success 'tracking setup fails on non-matching refspec' '
0d158ebb 747 git config remote.local.url . &&
81f339dc 748 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
0d158ebb 749 (git show-ref -q refs/remotes/local/master || git fetch local) &&
81f339dc 750 git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
9c9cd39a
JH
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
0d158ebb
RR
754'
755
756test_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
766test_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
777test_expect_success 'no tracking without .fetch entries' '
778 git config branch.autosetupmerge true &&
779 git branch my6 s &&
002ba037 780 git config branch.autosetupmerge false &&
0d158ebb
RR
781 test -z "$(git config branch.my6.remote)" &&
782 test -z "$(git config branch.my6.merge)"
783'
784
785test_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
794test_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
800test_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
f292244c
KY
808test_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 &&
ab313814
NB
811 test_must_fail git branch -d my7 &&
812 rm -r my7 &&
813 git worktree prune
f292244c
KY
814'
815
0d158ebb
RR
816test_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
822test_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
828test_expect_success 'branch from non-branch HEAD w/--track causes failure' '
829 test_must_fail git branch --track my10 HEAD^
830'
831
832test_expect_success 'branch from tag w/--track causes failure' '
833 git tag foobar &&
834 test_must_fail git branch --track my11 foobar
835'
836
0cb24fe8 837test_expect_success '--set-upstream-to fails on multiple branches' '
6b709306
DL
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
0cb24fe8
JH
841'
842
843test_expect_success '--set-upstream-to fails on detached HEAD' '
844 git checkout HEAD^{} &&
6b709306
DL
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
0cb24fe8
JH
849'
850
8a3e5ecd 851test_expect_success '--set-upstream-to fails on a missing dst branch' '
6b709306
DL
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
8a3e5ecd
JK
855'
856
857test_expect_success '--set-upstream-to fails on a missing src branch' '
6b709306
DL
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
8a3e5ecd
JK
860'
861
862test_expect_success '--set-upstream-to fails on a non-ref' '
6b709306
DL
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
8a3e5ecd
JK
866'
867
27852b2c
PS
868test_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 &&
6b709306 872 test_must_fail git branch --set-upstream-to locked 2>err &&
d223e854 873 test_i18ngrep "could not lock config file .git/config" err
27852b2c
PS
874'
875
0d158ebb
RR
876test_expect_success 'use --set-upstream-to modify HEAD' '
877 test_config branch.master.remote foo &&
878 test_config branch.master.merge foo &&
d0423ddd 879 git branch my12 &&
0d158ebb
RR
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
885test_expect_success 'use --set-upstream-to modify a particular branch' '
d0423ddd 886 git branch my13 &&
0d158ebb 887 git branch --set-upstream-to master my13 &&
93a6b3f2 888 test_when_finished "git branch --unset-upstream my13" &&
0d158ebb
RR
889 test "$(git config branch.my13.remote)" = "." &&
890 test "$(git config branch.my13.merge)" = "refs/heads/master"
891'
892
893test_expect_success '--unset-upstream should fail if given a non-existent branch' '
6b709306
DL
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
0d158ebb
RR
897'
898
b81842cb
PS
899test_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 &&
6b709306 903 test_must_fail git branch --unset-upstream 2>err &&
d223e854 904 test_i18ngrep "could not lock config file .git/config" err
b81842cb
PS
905'
906
0d158ebb 907test_expect_success 'test --unset-upstream on HEAD' '
d0423ddd 908 git branch my14 &&
0d158ebb
RR
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
6b709306
DL
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
0d158ebb
RR
919'
920
0cb24fe8 921test_expect_success '--unset-upstream should fail on multiple branches' '
6b709306
DL
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
0cb24fe8
JH
925'
926
927test_expect_success '--unset-upstream should fail on detached HEAD' '
928 git checkout HEAD^{} &&
6b709306
DL
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
0cb24fe8
JH
933'
934
0d158ebb 935test_expect_success 'test --unset-upstream on a particular branch' '
d0423ddd 936 git branch my15 &&
0d158ebb
RR
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
cf317877 943test_expect_success 'disabled option --set-upstream fails' '
6d504d5b 944 test_must_fail git branch --set-upstream origin/master
b347d06b
CMN
945'
946
95052d1f
BG
947test_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 &&
6d504d5b 949 cat >expect <<-\EOF &&
95052d1f
BG
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 &&
6d504d5b 954 test_i18ncmp expect actual
95052d1f
BG
955'
956
0746d19a
PB
957# Keep this test last, as it changes the current branch
958cat >expect <<EOF
8125a58b 959$ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
0746d19a 960EOF
0d158ebb
RR
961test_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'
0746d19a 968
b2099957
EM
969test_expect_success 'checkout -b makes reflog by default' '
970 git checkout master &&
971 git config --unset core.logAllRefUpdates &&
972 git checkout -b alpha &&
6e6842e3 973 git rev-parse --verify alpha@{0}
b2099957
EM
974'
975
976test_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 &&
6e6842e3 980 test_must_fail git rev-parse --verify beta@{0}
b2099957
EM
981'
982
983test_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 &&
6e6842e3 987 git rev-parse --verify gamma@{0}
b2099957
EM
988'
989
1d0a694b
DB
990test_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 &&
27852b2c 996 test_must_fail git branch all1 master &&
1d0a694b
DB
997 test -z "$(git config branch.all1.merge)"
998'
999
c998ae9b
DS
1000test_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 &&
0cb0e143 1004 (git show-ref -q refs/remotes/local/o || git fetch local) &&
c998ae9b
DS
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
1012test_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 &&
0cb0e143 1016 (git show-ref -q refs/remotes/local/o || git fetch local) &&
c998ae9b
DS
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
1024test_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 &&
0cb0e143 1028 (git show-ref -q refs/remotes/local/o || git fetch local) &&
c998ae9b
DS
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
1036test_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 &&
0cb0e143 1040 (git show-ref -q refs/remotes/local/o || git fetch local) &&
c998ae9b
DS
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
1048test_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 &&
0cb0e143 1052 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1059test_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 &&
0cb0e143 1063 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1070test_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 &&
0cb0e143 1074 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1081test_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 &&
0cb0e143 1085 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1092test_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/* &&
0cb0e143 1096 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1103test_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/* &&
0cb0e143 1106 (git show-ref -q refs/remotes/local/o || git fetch local) &&
c998ae9b
DS
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
1114test_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/* &&
0cb0e143 1117 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1124test_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/* &&
0cb0e143 1127 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1134test_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/* &&
0cb0e143 1138 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1145test_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/* &&
0cb0e143 1149 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1156test_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/* &&
0cb0e143 1160 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1167test_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/* &&
0cb0e143 1171 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1178test_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/* &&
0cb0e143 1182 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1189test_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/* &&
0cb0e143 1193 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1200test_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/* &&
0cb0e143 1204 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
1211test_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/* &&
0cb0e143 1215 (git show-ref -q refs/remotes/local/master || git fetch local) &&
c998ae9b
DS
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
21b5b1e8
JH
1222test_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
c998ae9b
DS
1231test_expect_success 'detect misconfigured autosetuprebase (bad value)' '
1232 git config branch.autosetuprebase garbage &&
1233 test_must_fail git branch
1234'
1235
1236test_expect_success 'detect misconfigured autosetuprebase (no value)' '
1237 git config --unset branch.autosetuprebase &&
0d158ebb 1238 echo "[branch] autosetuprebase" >>.git/config &&
c998ae9b
DS
1239 test_must_fail git branch &&
1240 git config --unset branch.autosetuprebase
1241'
1242
99c419c9
JH
1243test_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
1249test_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
1257test_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
c2d17ba3
JH
1269test_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 &&
dcbaa0b3 1279 test_cmp expect EDITOR_OUTPUT
c2d17ba3
JH
1280'
1281
1282test_expect_success 'detect typo in branch name when using --edit-description' '
1283 write_script editor <<-\EOF &&
1284 echo "New contents" >"$1"
1285 EOF
512477b1 1286 test_must_fail env EDITOR=./editor git branch --edit-description no-such-branch
c2d17ba3
JH
1287'
1288
1289test_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 &&
512477b1 1294 test_must_fail env EDITOR=./editor git branch --edit-description
c2d17ba3
JH
1295'
1296
6c41e975
CMN
1297test_expect_success '--merged catches invalid object names' '
1298 test_must_fail git branch --merged 0000000000000000000000000000000000000000
1299'
1300
17d6c744
ÆAB
1301test_expect_success '--merged is incompatible with --no-merged' '
1302 test_must_fail git branch --merged HEAD --no-merged HEAD
1303'
1304
1f537be3
ES
1305test_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
1316test_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
1d7358c5 1328test_expect_success 'tracking with unexpected .fetch refspec' '
b0f49ff1 1329 rm -rf a b c d &&
62d94a3a
JH
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
560ae1c1
SM
1363test_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
1386test_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
1401test_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
a3b427b9 1409test_done