summaryrefslogtreecommitdiff
path: root/t/t6040-tracking-info.sh
blob: e95d4209726e957ecb6fb0845c03de8486cca0ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
#!/bin/sh

test_description='remote tracking stats'

GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME

. ./test-lib.sh

advance () {
	echo "$1" >"$1" &&
	git add "$1" &&
	test_tick &&
	git commit -m "$1"
}

test_expect_success setup '
	advance a &&
	advance b &&
	advance c &&
	git clone . test &&
	(
		cd test &&
		git checkout -b b1 origin &&
		git reset --hard HEAD^ &&
		advance d &&
		git checkout -b b2 origin &&
		git reset --hard b1 &&
		git checkout -b b3 origin &&
		git reset --hard HEAD^ &&
		git checkout -b b4 origin &&
		advance e &&
		advance f &&
		git checkout -b brokenbase origin &&
		git checkout -b b5 --track brokenbase &&
		advance g &&
		git branch -d brokenbase &&
		git checkout -b b6 origin
	) &&
	git checkout -b follower --track main &&
	advance h
'

t6040_script='s/^..\(b.\) *[0-9a-f]* \(.*\)$/\1 \2/p'
cat >expect <<\EOF
b1 [ahead 1, behind 1] d
b2 [ahead 1, behind 1] d
b3 [behind 1] b
b4 [ahead 2] f
b5 [gone] g
b6 c
EOF

test_expect_success 'branch -v' '
	(
		cd test &&
		git branch -v
	) |
	sed -n -e "$t6040_script" >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
b1 [origin/main: ahead 1, behind 1] d
b2 [origin/main: ahead 1, behind 1] d
b3 [origin/main: behind 1] b
b4 [origin/main: ahead 2] f
b5 [brokenbase: gone] g
b6 [origin/main] c
EOF

test_expect_success 'branch -vv' '
	(
		cd test &&
		git branch -vv
	) |
	sed -n -e "$t6040_script" >actual &&
	test_cmp expect actual
'

test_expect_success 'checkout (diverged from upstream)' '
	(
		cd test && git checkout b1
	) >actual &&
	test_grep "have 1 and 1 different" actual
'

test_expect_success 'checkout with local tracked branch' '
	git checkout main &&
	git checkout follower >actual &&
	test_grep "is ahead of" actual
'

test_expect_success 'checkout (upstream is gone)' '
	(
		cd test &&
		git checkout b5
	) >actual &&
	test_grep "is based on .*, but the upstream is gone." actual
'

test_expect_success 'checkout (up-to-date with upstream)' '
	(
		cd test && git checkout b6
	) >actual &&
	test_grep "Your branch is up to date with .origin/main" actual
'

test_expect_success 'status (diverged from upstream)' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		# reports nothing to commit
		test_must_fail git commit --dry-run
	) >actual &&
	test_grep "have 1 and 1 different" actual
'

test_expect_success 'status (upstream is gone)' '
	(
		cd test &&
		git checkout b5 >/dev/null &&
		# reports nothing to commit
		test_must_fail git commit --dry-run
	) >actual &&
	test_grep "is based on .*, but the upstream is gone." actual
'

test_expect_success 'status (up-to-date with upstream)' '
	(
		cd test &&
		git checkout b6 >/dev/null &&
		# reports nothing to commit
		test_must_fail git commit --dry-run
	) >actual &&
	test_grep "Your branch is up to date with .origin/main" actual
'

cat >expect <<\EOF
## b1...origin/main [ahead 1, behind 1]
EOF

test_expect_success 'status -s -b (diverged from upstream)' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git status -s -b | head -1
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
## b1...origin/main [different]
EOF

test_expect_success 'status -s -b --no-ahead-behind (diverged from upstream)' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git status -s -b --no-ahead-behind | head -1
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
## b1...origin/main [different]
EOF

test_expect_success 'status.aheadbehind=false status -s -b (diverged from upstream)' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git -c status.aheadbehind=false status -s -b | head -1
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
On branch b1
Your branch and 'origin/main' have diverged,
and have 1 and 1 different commits each, respectively.
EOF

test_expect_success 'status --long --branch' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git status --long -b | head -3
	) >actual &&
	test_cmp expect actual
'

test_expect_success 'status --long --branch' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git -c status.aheadbehind=true status --long -b | head -3
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
On branch b1
Your branch and 'origin/main' refer to different commits.
EOF

test_expect_success 'status --long --branch --no-ahead-behind' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git status --long -b --no-ahead-behind | head -2
	) >actual &&
	test_cmp expect actual
'

test_expect_success 'status.aheadbehind=false status --long --branch' '
	(
		cd test &&
		git checkout b1 >/dev/null &&
		git -c status.aheadbehind=false status --long -b | head -2
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
## b5...brokenbase [gone]
EOF

test_expect_success 'status -s -b (upstream is gone)' '
	(
		cd test &&
		git checkout b5 >/dev/null &&
		git status -s -b | head -1
	) >actual &&
	test_cmp expect actual
'

cat >expect <<\EOF
## b6...origin/main
EOF

test_expect_success 'status -s -b (up-to-date with upstream)' '
	(
		cd test &&
		git checkout b6 >/dev/null &&
		git status -s -b | head -1
	) >actual &&
	test_cmp expect actual
'

test_expect_success 'fail to track lightweight tags' '
	git checkout main &&
	git tag light &&
	test_must_fail git branch --track lighttrack light >actual &&
	test_grep ! "set up to track" actual &&
	test_must_fail git checkout lighttrack
'

test_expect_success 'fail to track annotated tags' '
	git checkout main &&
	git tag -m heavy heavy &&
	test_must_fail git branch --track heavytrack heavy >actual &&
	test_grep ! "set up to track" actual &&
	test_must_fail git checkout heavytrack
'

test_expect_success '--set-upstream-to does not change branch' '
	git branch from-main main &&
	git branch --set-upstream-to main from-main &&
	git branch from-topic_2 main &&
	test_must_fail git config branch.from-topic_2.merge > actual &&
	git rev-list from-topic_2 &&
	git update-ref refs/heads/from-topic_2 from-topic_2^ &&
	git rev-parse from-topic_2 >expect2 &&
	git branch --set-upstream-to main from-topic_2 &&
	git config branch.from-main.merge > actual &&
	git rev-parse from-topic_2 >actual2 &&
	test_grep -q "^refs/heads/main$" actual &&
	cmp expect2 actual2
'

test_expect_success '--set-upstream-to @{-1}' '
	git checkout follower &&
	git checkout from-topic_2 &&
	git config branch.from-topic_2.merge > expect2 &&
	git branch --set-upstream-to @{-1} from-main &&
	git config branch.from-main.merge > actual &&
	git config branch.from-topic_2.merge > actual2 &&
	git branch --set-upstream-to follower from-main &&
	git config branch.from-main.merge > expect &&
	test_cmp expect2 actual2 &&
	test_cmp expect actual
'

test_expect_success 'status tracking origin/main shows only main' '
	git -C test checkout b4 &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch b4
	Your branch is ahead of ${SQ}origin/main${SQ} by 2 commits.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status --no-ahead-behind tracking origin/main shows only main' '
	git -C test checkout b4 &&
	git -C test status --no-ahead-behind >actual &&
	cat >expect <<-EOF &&
	On branch b4
	Your branch and ${SQ}origin/main${SQ} refer to different commits.
	  (use "git status --ahead-behind" for details)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches deduplicates when upstream and push are the same' '
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout main &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch main
	Your branch is up to date with ${SQ}origin/main${SQ}.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with only upstream shows only upstream' '
	test_config -C test status.compareBranches "@{upstream}" &&
	git -C test checkout main &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch main
	Your branch is up to date with ${SQ}origin/main${SQ}.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with only push shows only push' '
	test_config -C test push.default current &&
	test_config -C test status.compareBranches "@{push}" &&
	git -C test checkout -b feature2 origin/main &&
	git -C test push origin HEAD &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature2
	Your branch is ahead of ${SQ}origin/feature2${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches shows ahead of both upstream and push branch' '
	test_config -C test push.default current &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature3 origin/main &&
	git -C test push origin HEAD &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature3
	Your branch is ahead of ${SQ}origin/main${SQ} by 1 commit.

	Your branch is ahead of ${SQ}origin/feature3${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'checkout with status.compareBranches shows both branches' '
	test_config -C test push.default current &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout feature3 >actual &&
	cat >expect <<-EOF &&
	Your branch is ahead of ${SQ}origin/main${SQ} by 1 commit.

	Your branch is ahead of ${SQ}origin/feature3${SQ} by 1 commit.
	  (use "git push" to publish your local commits)
	EOF
	test_cmp expect actual
'

test_expect_success 'setup for ahead of tracked but diverged from main' '
	(
		cd test &&
		git checkout -b feature4 origin/main &&
		advance work1 &&
		git checkout origin/main &&
		advance work2 &&
		git push origin HEAD:main &&
		git checkout feature4 &&
		advance work3
	)
'

test_expect_success 'status.compareBranches shows diverged and ahead' '
	test_config -C test push.default current &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout feature4 &&
	git -C test branch --set-upstream-to origin/main &&
	git -C test push origin HEAD &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature4
	Your branch and ${SQ}origin/main${SQ} have diverged,
	and have 3 and 1 different commits each, respectively.
	  (use "git pull" if you want to integrate the remote branch with yours)

	Your branch is ahead of ${SQ}origin/feature4${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status --no-ahead-behind with status.compareBranches' '
	test_config -C test push.default current &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout feature4 &&
	git -C test status --no-ahead-behind >actual &&
	cat >expect <<-EOF &&
	On branch feature4
	Your branch and ${SQ}origin/main${SQ} refer to different commits.

	Your branch and ${SQ}origin/feature4${SQ} refer to different commits.
	  (use "git status --ahead-behind" for details)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'setup upstream remote' '
	(
		cd test &&
		git remote add upstream ../. &&
		git fetch upstream
	)
'

test_expect_success 'status.compareBranches with upstream and origin remotes' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature5 upstream/main &&
	git -C test push origin &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature5
	Your branch is ahead of ${SQ}upstream/main${SQ} by 1 commit.

	Your branch is ahead of ${SQ}origin/feature5${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches supports ordered upstream/push entries' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{push} @{upstream}" &&
	git -C test checkout -b feature6 upstream/main &&
	git -C test push origin &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature6
	Your branch is ahead of ${SQ}origin/feature6${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	Your branch is ahead of ${SQ}upstream/main${SQ} by 1 commit.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches deduplicates repeated specifiers' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{push} @{upstream} @{push}" &&
	git -C test checkout -b feature7 upstream/main &&
	git -C test push origin &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature7
	Your branch is ahead of ${SQ}origin/feature7${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	Your branch is ahead of ${SQ}upstream/main${SQ} by 1 commit.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with diverged push branch' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature8 upstream/main &&
	(cd test && advance work81) &&
	git -C test push origin &&
	git -C test reset --hard upstream/main &&
	(cd test && advance work82) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature8
	Your branch is ahead of ${SQ}upstream/main${SQ} by 1 commit.

	Your branch and ${SQ}origin/feature8${SQ} have diverged,
	and have 1 and 1 different commits each, respectively.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches shows up to date branches' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature9 upstream/main &&
	git -C test push origin &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature9
	Your branch is up to date with ${SQ}upstream/main${SQ}.

	Your branch is up to date with ${SQ}origin/feature9${SQ}.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status --no-ahead-behind with status.compareBranches up to date' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout feature9 >actual &&
	git -C test push origin &&
	git -C test status --no-ahead-behind >actual &&
	cat >expect <<-EOF &&
	On branch feature9
	Your branch is up to date with ${SQ}upstream/main${SQ}.

	Your branch is up to date with ${SQ}origin/feature9${SQ}.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'checkout with status.compareBranches shows up to date' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout feature9 >actual &&
	cat >expect <<-EOF &&
	Your branch is up to date with ${SQ}upstream/main${SQ}.

	Your branch is up to date with ${SQ}origin/feature9${SQ}.
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with upstream behind and push up to date' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b ahead upstream/main &&
	(cd test && advance work) &&
	git -C test push upstream HEAD &&
	git -C test checkout -b feature10 upstream/main &&
	git -C test push origin &&
	git -C test branch --set-upstream-to upstream/ahead &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature10
	Your branch is behind ${SQ}upstream/ahead${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull" to update your local branch)

	Your branch is up to date with ${SQ}origin/feature10${SQ}.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with remapped push refspec' '
	test_config -C test remote.origin.push refs/heads/feature11:refs/heads/remapped &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature11 origin/main &&
	git -C test push &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature11
	Your branch is ahead of ${SQ}origin/main${SQ} by 1 commit.

	Your branch is ahead of ${SQ}origin/remapped${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with remapped push and upstream remote' '
	test_config -C test remote.pushDefault origin &&
	test_config -C test remote.origin.push refs/heads/feature12:refs/heads/remapped &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature12 upstream/main &&
	git -C test push origin &&
	(cd test && advance work) &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature12
	Your branch is ahead of ${SQ}upstream/main${SQ} by 1 commit.

	Your branch is ahead of ${SQ}origin/remapped${SQ} by 1 commit.
	  (use "git push" to publish your local commits)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches behind both upstream and push' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature13 upstream/main &&
	(cd test && advance work13) &&
	git -C test push origin &&
	git -C test branch --set-upstream-to upstream/ahead &&
	git -C test reset --hard HEAD^ &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature13
	Your branch is behind ${SQ}upstream/ahead${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull" to update your local branch)

	Your branch is behind ${SQ}origin/feature13${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull origin feature13" to update your local branch)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with remapped push and behind push branch' '
	test_config -C test remote.pushDefault origin &&
	test_config -C test remote.origin.push refs/heads/feature14:refs/heads/remapped14 &&
	test_config -C test status.compareBranches "@{push}" &&
	git -C test checkout -b feature14 upstream/main &&
	(cd test && advance work14) &&
	git -C test push &&
	git -C test reset --hard HEAD^ &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature14
	Your branch is behind ${SQ}origin/remapped14${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull origin remapped14" to update your local branch)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches with behind push branch and no upstream' '
	test_config -C test push.default current &&
	test_config -C test remote.pushDefault origin &&
	test_config -C test status.compareBranches "@{push}" &&
	git -C test checkout --no-track -b feature15 upstream/main &&
	(cd test && advance work15) &&
	git -C test push origin &&
	git -C test reset --hard HEAD^ &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature15
	Your branch is behind ${SQ}origin/feature15${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull origin feature15" to update your local branch)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches behind upstream-equals-push suggests plain pull' '
	test_config -C test status.compareBranches "@{upstream} @{push}" &&
	git -C test checkout -b feature16 origin/main &&
	(cd test && advance work16) &&
	git -C test push origin HEAD:main &&
	git -C test reset --hard HEAD^ &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature16
	Your branch is behind ${SQ}origin/main${SQ} by 1 commit, and can be fast-forwarded.
	  (use "git pull" to update your local branch)

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_expect_success 'status.compareBranches suppresses advice when push tracking ref is unconventional' '
	test_config -C test push.default current &&
	test_config -C test remote.imported.url ../. &&
	test_config -C test remote.imported.fetch "+refs/heads/*:refs/imported/imported/*" &&
	test_config -C test branch.feature17.pushRemote imported &&
	test_config -C test status.compareBranches "@{push}" &&
	git -C test fetch imported &&
	git -C test checkout --no-track -b feature17 refs/imported/imported/main &&
	(cd test && advance work17) &&
	git -C test push imported HEAD:feature17 &&
	git -C test fetch imported &&
	git -C test reset --hard HEAD^ &&
	git -C test status >actual &&
	cat >expect <<-EOF &&
	On branch feature17
	Your branch is behind ${SQ}imported/imported/feature17${SQ} by 1 commit, and can be fast-forwarded.

	nothing to commit, working tree clean
	EOF
	test_cmp expect actual
'

test_done