status: fix null termination with "-b"
[git/jnareb-git.git] / t / t7508-status.sh
blob24728facf9c9fbf92a7aca4a5eb20e5905a84bee
1 #!/bin/sh
3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='git status'
8 . ./test-lib.sh
10 test_expect_success 'status -h in broken repository' '
11 mkdir broken &&
12 test_when_finished "rm -fr broken" &&
14 cd broken &&
15 git init &&
16 echo "[status] showuntrackedfiles = CORRUPT" >>.git/config &&
17 test_expect_code 129 git status -h >usage 2>&1
18 ) &&
19 test_i18ngrep "[Uu]sage" broken/usage
22 test_expect_success 'commit -h in broken repository' '
23 mkdir broken &&
24 test_when_finished "rm -fr broken" &&
26 cd broken &&
27 git init &&
28 echo "[status] showuntrackedfiles = CORRUPT" >>.git/config &&
29 test_expect_code 129 git commit -h >usage 2>&1
30 ) &&
31 test_i18ngrep "[Uu]sage" broken/usage
34 test_expect_success 'setup' '
35 : >tracked &&
36 : >modified &&
37 mkdir dir1 &&
38 : >dir1/tracked &&
39 : >dir1/modified &&
40 mkdir dir2 &&
41 : >dir1/tracked &&
42 : >dir1/modified &&
43 git add . &&
45 git status >output &&
47 test_tick &&
48 git commit -m initial &&
49 : >untracked &&
50 : >dir1/untracked &&
51 : >dir2/untracked &&
52 echo 1 >dir1/modified &&
53 echo 2 >dir2/modified &&
54 echo 3 >dir2/added &&
55 git add dir2/added
58 test_expect_success 'status (1)' '
59 test_i18ngrep "use \"git rm --cached <file>\.\.\.\" to unstage" output
62 cat >expect <<\EOF
63 # On branch master
64 # Changes to be committed:
65 # (use "git reset HEAD <file>..." to unstage)
67 # new file: dir2/added
69 # Changes not staged for commit:
70 # (use "git add <file>..." to update what will be committed)
71 # (use "git checkout -- <file>..." to discard changes in working directory)
73 # modified: dir1/modified
75 # Untracked files:
76 # (use "git add <file>..." to include in what will be committed)
78 # dir1/untracked
79 # dir2/modified
80 # dir2/untracked
81 # expect
82 # output
83 # untracked
84 EOF
86 test_expect_success 'status (2)' '
87 git status >output &&
88 test_i18ncmp expect output
91 cat >expect <<\EOF
92 # On branch master
93 # Changes to be committed:
94 # new file: dir2/added
96 # Changes not staged for commit:
97 # modified: dir1/modified
99 # Untracked files:
100 # dir1/untracked
101 # dir2/modified
102 # dir2/untracked
103 # expect
104 # output
105 # untracked
108 test_expect_success 'status (advice.statusHints false)' '
109 test_when_finished "git config --unset advice.statusHints" &&
110 git config advice.statusHints false &&
111 git status >output &&
112 test_i18ncmp expect output
116 cat >expect <<\EOF
117 M dir1/modified
118 A dir2/added
119 ?? dir1/untracked
120 ?? dir2/modified
121 ?? dir2/untracked
122 ?? expect
123 ?? output
124 ?? untracked
127 test_expect_success 'status -s' '
129 git status -s >output &&
130 test_cmp expect output
134 test_expect_success 'status with gitignore' '
136 echo ".gitignore" &&
137 echo "expect" &&
138 echo "output" &&
139 echo "untracked"
140 } >.gitignore &&
142 cat >expect <<-\EOF &&
143 M dir1/modified
144 A dir2/added
145 ?? dir2/modified
147 git status -s >output &&
148 test_cmp expect output &&
150 cat >expect <<-\EOF &&
151 M dir1/modified
152 A dir2/added
153 ?? dir2/modified
154 !! .gitignore
155 !! dir1/untracked
156 !! dir2/untracked
157 !! expect
158 !! output
159 !! untracked
161 git status -s --ignored >output &&
162 test_cmp expect output &&
164 cat >expect <<-\EOF &&
165 # On branch master
166 # Changes to be committed:
167 # (use "git reset HEAD <file>..." to unstage)
169 # new file: dir2/added
171 # Changes not staged for commit:
172 # (use "git add <file>..." to update what will be committed)
173 # (use "git checkout -- <file>..." to discard changes in working directory)
175 # modified: dir1/modified
177 # Untracked files:
178 # (use "git add <file>..." to include in what will be committed)
180 # dir2/modified
181 # Ignored files:
182 # (use "git add -f <file>..." to include in what will be committed)
184 # .gitignore
185 # dir1/untracked
186 # dir2/untracked
187 # expect
188 # output
189 # untracked
191 git status --ignored >output &&
192 test_i18ncmp expect output
195 test_expect_success 'status with gitignore (nothing untracked)' '
197 echo ".gitignore" &&
198 echo "expect" &&
199 echo "dir2/modified" &&
200 echo "output" &&
201 echo "untracked"
202 } >.gitignore &&
204 cat >expect <<-\EOF &&
205 M dir1/modified
206 A dir2/added
208 git status -s >output &&
209 test_cmp expect output &&
211 cat >expect <<-\EOF &&
212 M dir1/modified
213 A dir2/added
214 !! .gitignore
215 !! dir1/untracked
216 !! dir2/modified
217 !! dir2/untracked
218 !! expect
219 !! output
220 !! untracked
222 git status -s --ignored >output &&
223 test_cmp expect output &&
225 cat >expect <<-\EOF &&
226 # On branch master
227 # Changes to be committed:
228 # (use "git reset HEAD <file>..." to unstage)
230 # new file: dir2/added
232 # Changes not staged for commit:
233 # (use "git add <file>..." to update what will be committed)
234 # (use "git checkout -- <file>..." to discard changes in working directory)
236 # modified: dir1/modified
238 # Ignored files:
239 # (use "git add -f <file>..." to include in what will be committed)
241 # .gitignore
242 # dir1/untracked
243 # dir2/modified
244 # dir2/untracked
245 # expect
246 # output
247 # untracked
249 git status --ignored >output &&
250 test_i18ncmp expect output
253 rm -f .gitignore
255 cat >expect <<\EOF
256 ## master
257 M dir1/modified
258 A dir2/added
259 ?? dir1/untracked
260 ?? dir2/modified
261 ?? dir2/untracked
262 ?? expect
263 ?? output
264 ?? untracked
267 test_expect_success 'status -s -b' '
269 git status -s -b >output &&
270 test_cmp expect output
274 test_expect_success 'status -s -z -b' '
275 tr "\\n" Q <expect >expect.q &&
276 mv expect.q expect &&
277 git status -s -z -b >output &&
278 nul_to_q <output >output.q &&
279 mv output.q output &&
280 test_cmp expect output
283 test_expect_success 'setup dir3' '
284 mkdir dir3 &&
285 : >dir3/untracked1 &&
286 : >dir3/untracked2
289 cat >expect <<EOF
290 # On branch master
291 # Changes to be committed:
292 # (use "git reset HEAD <file>..." to unstage)
294 # new file: dir2/added
296 # Changes not staged for commit:
297 # (use "git add <file>..." to update what will be committed)
298 # (use "git checkout -- <file>..." to discard changes in working directory)
300 # modified: dir1/modified
302 # Untracked files not listed (use -u option to show untracked files)
304 test_expect_success 'status -uno' '
305 git status -uno >output &&
306 test_i18ncmp expect output
309 test_expect_success 'status (status.showUntrackedFiles no)' '
310 git config status.showuntrackedfiles no
311 test_when_finished "git config --unset status.showuntrackedfiles" &&
312 git status >output &&
313 test_i18ncmp expect output
316 cat >expect <<EOF
317 # On branch master
318 # Changes to be committed:
319 # new file: dir2/added
321 # Changes not staged for commit:
322 # modified: dir1/modified
324 # Untracked files not listed
326 git config advice.statusHints false
327 test_expect_success 'status -uno (advice.statusHints false)' '
328 git status -uno >output &&
329 test_i18ncmp expect output
331 git config --unset advice.statusHints
333 cat >expect << EOF
334 M dir1/modified
335 A dir2/added
337 test_expect_success 'status -s -uno' '
338 git status -s -uno >output &&
339 test_cmp expect output
342 test_expect_success 'status -s (status.showUntrackedFiles no)' '
343 git config status.showuntrackedfiles no
344 git status -s >output &&
345 test_cmp expect output
348 cat >expect <<EOF
349 # On branch master
350 # Changes to be committed:
351 # (use "git reset HEAD <file>..." to unstage)
353 # new file: dir2/added
355 # Changes not staged for commit:
356 # (use "git add <file>..." to update what will be committed)
357 # (use "git checkout -- <file>..." to discard changes in working directory)
359 # modified: dir1/modified
361 # Untracked files:
362 # (use "git add <file>..." to include in what will be committed)
364 # dir1/untracked
365 # dir2/modified
366 # dir2/untracked
367 # dir3/
368 # expect
369 # output
370 # untracked
372 test_expect_success 'status -unormal' '
373 git status -unormal >output &&
374 test_i18ncmp expect output
377 test_expect_success 'status (status.showUntrackedFiles normal)' '
378 git config status.showuntrackedfiles normal
379 test_when_finished "git config --unset status.showuntrackedfiles" &&
380 git status >output &&
381 test_i18ncmp expect output
384 cat >expect <<EOF
385 M dir1/modified
386 A dir2/added
387 ?? dir1/untracked
388 ?? dir2/modified
389 ?? dir2/untracked
390 ?? dir3/
391 ?? expect
392 ?? output
393 ?? untracked
395 test_expect_success 'status -s -unormal' '
396 git status -s -unormal >output &&
397 test_cmp expect output
400 test_expect_success 'status -s (status.showUntrackedFiles normal)' '
401 git config status.showuntrackedfiles normal
402 git status -s >output &&
403 test_cmp expect output
406 cat >expect <<EOF
407 # On branch master
408 # Changes to be committed:
409 # (use "git reset HEAD <file>..." to unstage)
411 # new file: dir2/added
413 # Changes not staged for commit:
414 # (use "git add <file>..." to update what will be committed)
415 # (use "git checkout -- <file>..." to discard changes in working directory)
417 # modified: dir1/modified
419 # Untracked files:
420 # (use "git add <file>..." to include in what will be committed)
422 # dir1/untracked
423 # dir2/modified
424 # dir2/untracked
425 # dir3/untracked1
426 # dir3/untracked2
427 # expect
428 # output
429 # untracked
431 test_expect_success 'status -uall' '
432 git status -uall >output &&
433 test_i18ncmp expect output
436 test_expect_success 'status (status.showUntrackedFiles all)' '
437 git config status.showuntrackedfiles all
438 test_when_finished "git config --unset status.showuntrackedfiles" &&
439 git status >output &&
440 test_i18ncmp expect output
443 test_expect_success 'teardown dir3' '
444 rm -rf dir3
447 cat >expect <<EOF
448 M dir1/modified
449 A dir2/added
450 ?? dir1/untracked
451 ?? dir2/modified
452 ?? dir2/untracked
453 ?? expect
454 ?? output
455 ?? untracked
457 test_expect_success 'status -s -uall' '
458 git config --unset status.showuntrackedfiles
459 git status -s -uall >output &&
460 test_cmp expect output
462 test_expect_success 'status -s (status.showUntrackedFiles all)' '
463 git config status.showuntrackedfiles all
464 git status -s >output &&
465 rm -rf dir3 &&
466 git config --unset status.showuntrackedfiles &&
467 test_cmp expect output
470 cat >expect <<\EOF
471 # On branch master
472 # Changes to be committed:
473 # (use "git reset HEAD <file>..." to unstage)
475 # new file: ../dir2/added
477 # Changes not staged for commit:
478 # (use "git add <file>..." to update what will be committed)
479 # (use "git checkout -- <file>..." to discard changes in working directory)
481 # modified: modified
483 # Untracked files:
484 # (use "git add <file>..." to include in what will be committed)
486 # untracked
487 # ../dir2/modified
488 # ../dir2/untracked
489 # ../expect
490 # ../output
491 # ../untracked
494 test_expect_success 'status with relative paths' '
495 (cd dir1 && git status) >output &&
496 test_i18ncmp expect output
499 cat >expect <<\EOF
500 M modified
501 A ../dir2/added
502 ?? untracked
503 ?? ../dir2/modified
504 ?? ../dir2/untracked
505 ?? ../expect
506 ?? ../output
507 ?? ../untracked
509 test_expect_success 'status -s with relative paths' '
511 (cd dir1 && git status -s) >output &&
512 test_cmp expect output
516 cat >expect <<\EOF
517 M dir1/modified
518 A dir2/added
519 ?? dir1/untracked
520 ?? dir2/modified
521 ?? dir2/untracked
522 ?? expect
523 ?? output
524 ?? untracked
527 test_expect_success 'status --porcelain ignores relative paths setting' '
529 (cd dir1 && git status --porcelain) >output &&
530 test_cmp expect output
534 test_expect_success 'setup unique colors' '
536 git config status.color.untracked blue &&
537 git config status.color.branch green
541 cat >expect <<\EOF
542 # On branch <GREEN>master<RESET>
543 # Changes to be committed:
544 # (use "git reset HEAD <file>..." to unstage)
546 # <GREEN>new file: dir2/added<RESET>
548 # Changes not staged for commit:
549 # (use "git add <file>..." to update what will be committed)
550 # (use "git checkout -- <file>..." to discard changes in working directory)
552 # <RED>modified: dir1/modified<RESET>
554 # Untracked files:
555 # (use "git add <file>..." to include in what will be committed)
557 # <BLUE>dir1/untracked<RESET>
558 # <BLUE>dir2/modified<RESET>
559 # <BLUE>dir2/untracked<RESET>
560 # <BLUE>expect<RESET>
561 # <BLUE>output<RESET>
562 # <BLUE>untracked<RESET>
565 test_expect_success 'status with color.ui' '
566 git config color.ui always &&
567 test_when_finished "git config --unset color.ui" &&
568 git status | test_decode_color >output &&
569 test_i18ncmp expect output
572 test_expect_success 'status with color.status' '
573 git config color.status always &&
574 test_when_finished "git config --unset color.status" &&
575 git status | test_decode_color >output &&
576 test_i18ncmp expect output
579 cat >expect <<\EOF
580 <RED>M<RESET> dir1/modified
581 <GREEN>A<RESET> dir2/added
582 <BLUE>??<RESET> dir1/untracked
583 <BLUE>??<RESET> dir2/modified
584 <BLUE>??<RESET> dir2/untracked
585 <BLUE>??<RESET> expect
586 <BLUE>??<RESET> output
587 <BLUE>??<RESET> untracked
590 test_expect_success 'status -s with color.ui' '
592 git config color.ui always &&
593 git status -s | test_decode_color >output &&
594 test_cmp expect output
598 test_expect_success 'status -s with color.status' '
600 git config --unset color.ui &&
601 git config color.status always &&
602 git status -s | test_decode_color >output &&
603 test_cmp expect output
607 cat >expect <<\EOF
608 ## <GREEN>master<RESET>
609 <RED>M<RESET> dir1/modified
610 <GREEN>A<RESET> dir2/added
611 <BLUE>??<RESET> dir1/untracked
612 <BLUE>??<RESET> dir2/modified
613 <BLUE>??<RESET> dir2/untracked
614 <BLUE>??<RESET> expect
615 <BLUE>??<RESET> output
616 <BLUE>??<RESET> untracked
619 test_expect_success 'status -s -b with color.status' '
621 git status -s -b | test_decode_color >output &&
622 test_cmp expect output
626 cat >expect <<\EOF
627 M dir1/modified
628 A dir2/added
629 ?? dir1/untracked
630 ?? dir2/modified
631 ?? dir2/untracked
632 ?? expect
633 ?? output
634 ?? untracked
637 test_expect_success 'status --porcelain ignores color.ui' '
639 git config --unset color.status &&
640 git config color.ui always &&
641 git status --porcelain | test_decode_color >output &&
642 test_cmp expect output
646 test_expect_success 'status --porcelain ignores color.status' '
648 git config --unset color.ui &&
649 git config color.status always &&
650 git status --porcelain | test_decode_color >output &&
651 test_cmp expect output
655 # recover unconditionally from color tests
656 git config --unset color.status
657 git config --unset color.ui
659 test_expect_success 'status --porcelain ignores -b' '
661 git status --porcelain -b >output &&
662 test_cmp expect output
666 cat >expect <<\EOF
667 # On branch master
668 # Changes to be committed:
669 # (use "git reset HEAD <file>..." to unstage)
671 # new file: dir2/added
673 # Changes not staged for commit:
674 # (use "git add <file>..." to update what will be committed)
675 # (use "git checkout -- <file>..." to discard changes in working directory)
677 # modified: dir1/modified
679 # Untracked files:
680 # (use "git add <file>..." to include in what will be committed)
682 # dir1/untracked
683 # dir2/modified
684 # dir2/untracked
685 # expect
686 # output
687 # untracked
691 test_expect_success 'status without relative paths' '
693 git config status.relativePaths false &&
694 test_when_finished "git config --unset status.relativePaths" &&
695 (cd dir1 && git status) >output &&
696 test_i18ncmp expect output
700 cat >expect <<\EOF
701 M dir1/modified
702 A dir2/added
703 ?? dir1/untracked
704 ?? dir2/modified
705 ?? dir2/untracked
706 ?? expect
707 ?? output
708 ?? untracked
711 test_expect_success 'status -s without relative paths' '
713 git config status.relativePaths false &&
714 test_when_finished "git config --unset status.relativePaths" &&
715 (cd dir1 && git status -s) >output &&
716 test_cmp expect output
720 cat <<EOF >expect
721 # On branch master
722 # Changes to be committed:
723 # (use "git reset HEAD <file>..." to unstage)
725 # modified: dir1/modified
727 # Untracked files:
728 # (use "git add <file>..." to include in what will be committed)
730 # dir1/untracked
731 # dir2/
732 # expect
733 # output
734 # untracked
736 test_expect_success 'dry-run of partial commit excluding new file in index' '
737 git commit --dry-run dir1/modified >output &&
738 test_i18ncmp expect output
741 cat >expect <<EOF
742 :100644 100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0000000000000000000000000000000000000000 M dir1/modified
744 test_expect_success 'status refreshes the index' '
745 touch dir2/added &&
746 git status &&
747 git diff-files >output &&
748 test_cmp expect output
751 test_expect_success 'setup status submodule summary' '
752 test_create_repo sm && (
753 cd sm &&
754 >foo &&
755 git add foo &&
756 git commit -m "Add foo"
757 ) &&
758 git add sm
761 cat >expect <<EOF
762 # On branch master
763 # Changes to be committed:
764 # (use "git reset HEAD <file>..." to unstage)
766 # new file: dir2/added
767 # new file: sm
769 # Changes not staged for commit:
770 # (use "git add <file>..." to update what will be committed)
771 # (use "git checkout -- <file>..." to discard changes in working directory)
773 # modified: dir1/modified
775 # Untracked files:
776 # (use "git add <file>..." to include in what will be committed)
778 # dir1/untracked
779 # dir2/modified
780 # dir2/untracked
781 # expect
782 # output
783 # untracked
785 test_expect_success 'status submodule summary is disabled by default' '
786 git status >output &&
787 test_i18ncmp expect output
790 # we expect the same as the previous test
791 test_expect_success 'status --untracked-files=all does not show submodule' '
792 git status --untracked-files=all >output &&
793 test_i18ncmp expect output
796 cat >expect <<EOF
797 M dir1/modified
798 A dir2/added
799 A sm
800 ?? dir1/untracked
801 ?? dir2/modified
802 ?? dir2/untracked
803 ?? expect
804 ?? output
805 ?? untracked
807 test_expect_success 'status -s submodule summary is disabled by default' '
808 git status -s >output &&
809 test_cmp expect output
812 # we expect the same as the previous test
813 test_expect_success 'status -s --untracked-files=all does not show submodule' '
814 git status -s --untracked-files=all >output &&
815 test_cmp expect output
818 head=$(cd sm && git rev-parse --short=7 --verify HEAD)
820 cat >expect <<EOF
821 # On branch master
822 # Changes to be committed:
823 # (use "git reset HEAD <file>..." to unstage)
825 # new file: dir2/added
826 # new file: sm
828 # Changes not staged for commit:
829 # (use "git add <file>..." to update what will be committed)
830 # (use "git checkout -- <file>..." to discard changes in working directory)
832 # modified: dir1/modified
834 # Submodule changes to be committed:
836 # * sm 0000000...$head (1):
837 # > Add foo
839 # Untracked files:
840 # (use "git add <file>..." to include in what will be committed)
842 # dir1/untracked
843 # dir2/modified
844 # dir2/untracked
845 # expect
846 # output
847 # untracked
849 test_expect_success 'status submodule summary' '
850 git config status.submodulesummary 10 &&
851 git status >output &&
852 test_i18ncmp expect output
855 cat >expect <<EOF
856 M dir1/modified
857 A dir2/added
858 A sm
859 ?? dir1/untracked
860 ?? dir2/modified
861 ?? dir2/untracked
862 ?? expect
863 ?? output
864 ?? untracked
866 test_expect_success 'status -s submodule summary' '
867 git status -s >output &&
868 test_cmp expect output
871 cat >expect <<EOF
872 # On branch master
873 # Changes not staged for commit:
874 # (use "git add <file>..." to update what will be committed)
875 # (use "git checkout -- <file>..." to discard changes in working directory)
877 # modified: dir1/modified
879 # Untracked files:
880 # (use "git add <file>..." to include in what will be committed)
882 # dir1/untracked
883 # dir2/modified
884 # dir2/untracked
885 # expect
886 # output
887 # untracked
888 no changes added to commit (use "git add" and/or "git commit -a")
890 test_expect_success 'status submodule summary (clean submodule): commit' '
891 git commit -m "commit submodule" &&
892 git config status.submodulesummary 10 &&
893 test_must_fail git commit --dry-run >output &&
894 test_i18ncmp expect output &&
895 git status >output &&
896 test_i18ncmp expect output
899 cat >expect <<EOF
900 M dir1/modified
901 ?? dir1/untracked
902 ?? dir2/modified
903 ?? dir2/untracked
904 ?? expect
905 ?? output
906 ?? untracked
908 test_expect_success 'status -s submodule summary (clean submodule)' '
909 git status -s >output &&
910 test_cmp expect output
913 test_expect_success 'status -z implies porcelain' '
914 git status --porcelain |
915 perl -pe "s/\012/\000/g" >expect &&
916 git status -z >output &&
917 test_cmp expect output
920 cat >expect <<EOF
921 # On branch master
922 # Changes to be committed:
923 # (use "git reset HEAD^1 <file>..." to unstage)
925 # new file: dir2/added
926 # new file: sm
928 # Changes not staged for commit:
929 # (use "git add <file>..." to update what will be committed)
930 # (use "git checkout -- <file>..." to discard changes in working directory)
932 # modified: dir1/modified
934 # Submodule changes to be committed:
936 # * sm 0000000...$head (1):
937 # > Add foo
939 # Untracked files:
940 # (use "git add <file>..." to include in what will be committed)
942 # dir1/untracked
943 # dir2/modified
944 # dir2/untracked
945 # expect
946 # output
947 # untracked
949 test_expect_success 'commit --dry-run submodule summary (--amend)' '
950 git config status.submodulesummary 10 &&
951 git commit --dry-run --amend >output &&
952 test_i18ncmp expect output
955 test_expect_success POSIXPERM,SANITY 'status succeeds in a read-only repository' '
957 chmod a-w .git &&
958 # make dir1/tracked stat-dirty
959 >dir1/tracked1 && mv -f dir1/tracked1 dir1/tracked &&
960 git status -s >output &&
961 ! grep dir1/tracked output &&
962 # make sure "status" succeeded without writing index out
963 git diff-files | grep dir1/tracked
965 status=$?
966 chmod 775 .git
967 (exit $status)
970 (cd sm && echo > bar && git add bar && git commit -q -m 'Add bar') && git add sm
971 new_head=$(cd sm && git rev-parse --short=7 --verify HEAD)
972 touch .gitmodules
974 cat > expect << EOF
975 # On branch master
976 # Changes to be committed:
977 # (use "git reset HEAD <file>..." to unstage)
979 # modified: sm
981 # Changes not staged for commit:
982 # (use "git add <file>..." to update what will be committed)
983 # (use "git checkout -- <file>..." to discard changes in working directory)
985 # modified: dir1/modified
987 # Submodule changes to be committed:
989 # * sm $head...$new_head (1):
990 # > Add bar
992 # Untracked files:
993 # (use "git add <file>..." to include in what will be committed)
995 # .gitmodules
996 # dir1/untracked
997 # dir2/modified
998 # dir2/untracked
999 # expect
1000 # output
1001 # untracked
1004 test_expect_success '--ignore-submodules=untracked suppresses submodules with untracked content' '
1005 echo modified sm/untracked &&
1006 git status --ignore-submodules=untracked >output &&
1007 test_i18ncmp expect output
1010 test_expect_success '.gitmodules ignore=untracked suppresses submodules with untracked content' '
1011 git config diff.ignoreSubmodules dirty &&
1012 git status >output &&
1013 test_i18ncmp expect output &&
1014 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1015 git config --add -f .gitmodules submodule.subname.path sm &&
1016 git status >output &&
1017 test_i18ncmp expect output &&
1018 git config -f .gitmodules --remove-section submodule.subname &&
1019 git config --unset diff.ignoreSubmodules
1022 test_expect_success '.git/config ignore=untracked suppresses submodules with untracked content' '
1023 git config --add -f .gitmodules submodule.subname.ignore none &&
1024 git config --add -f .gitmodules submodule.subname.path sm &&
1025 git config --add submodule.subname.ignore untracked &&
1026 git config --add submodule.subname.path sm &&
1027 git status >output &&
1028 test_i18ncmp expect output &&
1029 git config --remove-section submodule.subname &&
1030 git config --remove-section -f .gitmodules submodule.subname
1033 test_expect_success '--ignore-submodules=dirty suppresses submodules with untracked content' '
1034 git status --ignore-submodules=dirty >output &&
1035 test_i18ncmp expect output
1038 test_expect_success '.gitmodules ignore=dirty suppresses submodules with untracked content' '
1039 git config diff.ignoreSubmodules dirty &&
1040 git status >output &&
1041 ! test -s actual &&
1042 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1043 git config --add -f .gitmodules submodule.subname.path sm &&
1044 git status >output &&
1045 test_i18ncmp expect output &&
1046 git config -f .gitmodules --remove-section submodule.subname &&
1047 git config --unset diff.ignoreSubmodules
1050 test_expect_success '.git/config ignore=dirty suppresses submodules with untracked content' '
1051 git config --add -f .gitmodules submodule.subname.ignore none &&
1052 git config --add -f .gitmodules submodule.subname.path sm &&
1053 git config --add submodule.subname.ignore dirty &&
1054 git config --add submodule.subname.path sm &&
1055 git status >output &&
1056 test_i18ncmp expect output &&
1057 git config --remove-section submodule.subname &&
1058 git config -f .gitmodules --remove-section submodule.subname
1061 test_expect_success '--ignore-submodules=dirty suppresses submodules with modified content' '
1062 echo modified >sm/foo &&
1063 git status --ignore-submodules=dirty >output &&
1064 test_i18ncmp expect output
1067 test_expect_success '.gitmodules ignore=dirty suppresses submodules with modified content' '
1068 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1069 git config --add -f .gitmodules submodule.subname.path sm &&
1070 git status >output &&
1071 test_i18ncmp expect output &&
1072 git config -f .gitmodules --remove-section submodule.subname
1075 test_expect_success '.git/config ignore=dirty suppresses submodules with modified content' '
1076 git config --add -f .gitmodules submodule.subname.ignore none &&
1077 git config --add -f .gitmodules submodule.subname.path sm &&
1078 git config --add submodule.subname.ignore dirty &&
1079 git config --add submodule.subname.path sm &&
1080 git status >output &&
1081 test_i18ncmp expect output &&
1082 git config --remove-section submodule.subname &&
1083 git config -f .gitmodules --remove-section submodule.subname
1086 cat > expect << EOF
1087 # On branch master
1088 # Changes to be committed:
1089 # (use "git reset HEAD <file>..." to unstage)
1091 # modified: sm
1093 # Changes not staged for commit:
1094 # (use "git add <file>..." to update what will be committed)
1095 # (use "git checkout -- <file>..." to discard changes in working directory)
1096 # (commit or discard the untracked or modified content in submodules)
1098 # modified: dir1/modified
1099 # modified: sm (modified content)
1101 # Submodule changes to be committed:
1103 # * sm $head...$new_head (1):
1104 # > Add bar
1106 # Untracked files:
1107 # (use "git add <file>..." to include in what will be committed)
1109 # .gitmodules
1110 # dir1/untracked
1111 # dir2/modified
1112 # dir2/untracked
1113 # expect
1114 # output
1115 # untracked
1118 test_expect_success "--ignore-submodules=untracked doesn't suppress submodules with modified content" '
1119 git status --ignore-submodules=untracked > output &&
1120 test_i18ncmp expect output
1123 test_expect_success ".gitmodules ignore=untracked doesn't suppress submodules with modified content" '
1124 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1125 git config --add -f .gitmodules submodule.subname.path sm &&
1126 git status >output &&
1127 test_i18ncmp expect output &&
1128 git config -f .gitmodules --remove-section submodule.subname
1131 test_expect_success ".git/config ignore=untracked doesn't suppress submodules with modified content" '
1132 git config --add -f .gitmodules submodule.subname.ignore none &&
1133 git config --add -f .gitmodules submodule.subname.path sm &&
1134 git config --add submodule.subname.ignore untracked &&
1135 git config --add submodule.subname.path sm &&
1136 git status >output &&
1137 test_i18ncmp expect output &&
1138 git config --remove-section submodule.subname &&
1139 git config -f .gitmodules --remove-section submodule.subname
1142 head2=$(cd sm && git commit -q -m "2nd commit" foo && git rev-parse --short=7 --verify HEAD)
1144 cat > expect << EOF
1145 # On branch master
1146 # Changes to be committed:
1147 # (use "git reset HEAD <file>..." to unstage)
1149 # modified: sm
1151 # Changes not staged for commit:
1152 # (use "git add <file>..." to update what will be committed)
1153 # (use "git checkout -- <file>..." to discard changes in working directory)
1155 # modified: dir1/modified
1156 # modified: sm (new commits)
1158 # Submodule changes to be committed:
1160 # * sm $head...$new_head (1):
1161 # > Add bar
1163 # Submodules changed but not updated:
1165 # * sm $new_head...$head2 (1):
1166 # > 2nd commit
1168 # Untracked files:
1169 # (use "git add <file>..." to include in what will be committed)
1171 # .gitmodules
1172 # dir1/untracked
1173 # dir2/modified
1174 # dir2/untracked
1175 # expect
1176 # output
1177 # untracked
1180 test_expect_success "--ignore-submodules=untracked doesn't suppress submodule summary" '
1181 git status --ignore-submodules=untracked > output &&
1182 test_i18ncmp expect output
1185 test_expect_success ".gitmodules ignore=untracked doesn't suppress submodule summary" '
1186 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1187 git config --add -f .gitmodules submodule.subname.path sm &&
1188 git status >output &&
1189 test_i18ncmp expect output &&
1190 git config -f .gitmodules --remove-section submodule.subname
1193 test_expect_success ".git/config ignore=untracked doesn't suppress submodule summary" '
1194 git config --add -f .gitmodules submodule.subname.ignore none &&
1195 git config --add -f .gitmodules submodule.subname.path sm &&
1196 git config --add submodule.subname.ignore untracked &&
1197 git config --add submodule.subname.path sm &&
1198 git status >output &&
1199 test_i18ncmp expect output &&
1200 git config --remove-section submodule.subname &&
1201 git config -f .gitmodules --remove-section submodule.subname
1204 test_expect_success "--ignore-submodules=dirty doesn't suppress submodule summary" '
1205 git status --ignore-submodules=dirty > output &&
1206 test_i18ncmp expect output
1208 test_expect_success ".gitmodules ignore=dirty doesn't suppress submodule summary" '
1209 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1210 git config --add -f .gitmodules submodule.subname.path sm &&
1211 git status >output &&
1212 test_i18ncmp expect output &&
1213 git config -f .gitmodules --remove-section submodule.subname
1216 test_expect_success ".git/config ignore=dirty doesn't suppress submodule summary" '
1217 git config --add -f .gitmodules submodule.subname.ignore none &&
1218 git config --add -f .gitmodules submodule.subname.path sm &&
1219 git config --add submodule.subname.ignore dirty &&
1220 git config --add submodule.subname.path sm &&
1221 git status >output &&
1222 test_i18ncmp expect output &&
1223 git config --remove-section submodule.subname &&
1224 git config -f .gitmodules --remove-section submodule.subname
1227 cat > expect << EOF
1228 # On branch master
1229 # Changes not staged for commit:
1230 # (use "git add <file>..." to update what will be committed)
1231 # (use "git checkout -- <file>..." to discard changes in working directory)
1233 # modified: dir1/modified
1235 # Untracked files:
1236 # (use "git add <file>..." to include in what will be committed)
1238 # .gitmodules
1239 # dir1/untracked
1240 # dir2/modified
1241 # dir2/untracked
1242 # expect
1243 # output
1244 # untracked
1245 no changes added to commit (use "git add" and/or "git commit -a")
1248 test_expect_success "--ignore-submodules=all suppresses submodule summary" '
1249 git status --ignore-submodules=all > output &&
1250 test_i18ncmp expect output
1253 test_expect_failure '.gitmodules ignore=all suppresses submodule summary' '
1254 git config --add -f .gitmodules submodule.subname.ignore all &&
1255 git config --add -f .gitmodules submodule.subname.path sm &&
1256 git status > output &&
1257 test_cmp expect output &&
1258 git config -f .gitmodules --remove-section submodule.subname
1261 test_expect_failure '.git/config ignore=all suppresses submodule summary' '
1262 git config --add -f .gitmodules submodule.subname.ignore none &&
1263 git config --add -f .gitmodules submodule.subname.path sm &&
1264 git config --add submodule.subname.ignore all &&
1265 git config --add submodule.subname.path sm &&
1266 git status > output &&
1267 test_cmp expect output &&
1268 git config --remove-section submodule.subname &&
1269 git config -f .gitmodules --remove-section submodule.subname
1272 test_done