3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='git status'
9 . "$TEST_DIRECTORY"/lib-terminal.sh
11 test_expect_success 'status -h in broken repository' '
12 git config --global advice.statusuoption false &&
14 test_when_finished "rm -fr broken" &&
18 echo "[status] showuntrackedfiles = CORRUPT" >>.git/config &&
19 test_expect_code 129 git status -h >usage 2>&1
21 test_i18ngrep "[Uu]sage" broken/usage
24 test_expect_success 'commit -h in broken repository' '
26 test_when_finished "rm -fr broken" &&
30 echo "[status] showuntrackedfiles = CORRUPT" >>.git/config &&
31 test_expect_code 129 git commit -h >usage 2>&1
33 test_i18ngrep "[Uu]sage" broken/usage
36 test_expect_success 'create upstream branch' '
37 git checkout -b upstream &&
38 test_commit upstream1 &&
39 test_commit upstream2 &&
40 # leave the first commit on master as root because several
41 # tests depend on this case; for our upstream we only
42 # care about commit counts anyway, so a totally divergent
44 git checkout --orphan master
47 test_expect_success 'setup' '
61 git commit -m initial &&
65 echo 1 >dir1/modified &&
66 echo 2 >dir2/modified &&
70 git branch --set-upstream-to=upstream
73 test_expect_success 'status (1)' '
74 test_i18ngrep "use \"git rm --cached <file>\.\.\.\" to unstage" output
79 sed "s/^\# //; s/^\#$//; s/^#$tab/$tab/" <"$1" >"$1".tmp &&
80 rm "$1" && mv "$1".tmp "$1"
83 cat >.gitignore <<\EOF
89 test_expect_success 'status --column' '
92 # Your branch and '\''upstream'\'' have diverged,
93 # and have 1 and 2 different commits each, respectively.
94 # (use "git pull" to merge the remote branch into yours)
96 # Changes to be committed:
97 # (use "git restore --staged <file>..." to unstage)
98 # new file: dir2/added
100 # Changes not staged for commit:
101 # (use "git add <file>..." to update what will be committed)
102 # (use "git restore <file>..." to discard changes in working directory)
103 # modified: dir1/modified
106 # (use "git add <file>..." to include in what will be committed)
107 # dir1/untracked dir2/untracked
108 # dir2/modified untracked
111 COLUMNS=50 git -c status.displayCommentPrefix=true status --column="column dense" >output &&
112 test_i18ncmp expect output
115 test_expect_success 'status --column status.displayCommentPrefix=false' '
116 strip_comments expect &&
117 COLUMNS=49 git -c status.displayCommentPrefix=false status --column="column dense" >output &&
118 test_i18ncmp expect output
123 # Your branch and 'upstream' have diverged,
124 # and have 1 and 2 different commits each, respectively.
125 # (use "git pull" to merge the remote branch into yours)
127 # Changes to be committed:
128 # (use "git restore --staged <file>..." to unstage)
129 # new file: dir2/added
131 # Changes not staged for commit:
132 # (use "git add <file>..." to update what will be committed)
133 # (use "git restore <file>..." to discard changes in working directory)
134 # modified: dir1/modified
137 # (use "git add <file>..." to include in what will be committed)
145 test_expect_success 'status with status.displayCommentPrefix=true' '
146 git -c status.displayCommentPrefix=true status >output &&
147 test_i18ncmp expect output
150 test_expect_success 'status with status.displayCommentPrefix=false' '
151 strip_comments expect &&
152 git -c status.displayCommentPrefix=false status >output &&
153 test_i18ncmp expect output
156 test_expect_success 'status -v' '
157 (cat expect && git diff --cached) >expect-with-v &&
158 git status -v >output &&
159 test_i18ncmp expect-with-v output
162 test_expect_success 'status -v -v' '
164 echo "Changes to be committed:" &&
165 git -c diff.mnemonicprefix=true diff --cached &&
166 echo "--------------------------------------------------" &&
167 echo "Changes not staged for commit:" &&
168 git -c diff.mnemonicprefix=true diff) >expect-with-v &&
169 git status -v -v >output &&
170 test_i18ncmp expect-with-v output
173 test_expect_success 'setup fake editor' '
174 cat >.git/editor <<-\EOF &&
178 chmod 755 .git/editor
181 commit_template_commented () {
183 EDITOR=.git/editor &&
185 # Fails due to empty message
186 test_must_fail git commit
188 ! grep '^[^#]' output
191 test_expect_success 'commit ignores status.displayCommentPrefix=false in COMMIT_EDITMSG' '
192 commit_template_commented
197 Your branch and 'upstream' have diverged,
198 and have 1 and 2 different commits each, respectively.
200 Changes to be committed:
203 Changes not staged for commit:
204 modified: dir1/modified
214 test_expect_success 'status (advice.statusHints false)' '
215 test_config advice.statusHints false &&
216 git status >output &&
217 test_i18ncmp expect output
230 test_expect_success 'status -s' '
232 git status -s >output &&
233 test_cmp expect output
237 test_expect_success 'status with gitignore' '
245 cat >expect <<-\EOF &&
250 git status -s >output &&
251 test_cmp expect output &&
253 cat >expect <<-\EOF &&
265 git status -s --ignored >output &&
266 test_cmp expect output &&
268 cat >expect <<\EOF &&
270 Your branch and '\''upstream'\'' have diverged,
271 and have 1 and 2 different commits each, respectively.
272 (use "git pull" to merge the remote branch into yours)
274 Changes to be committed:
275 (use "git restore --staged <file>..." to unstage)
278 Changes not staged for commit:
279 (use "git add <file>..." to update what will be committed)
280 (use "git restore <file>..." to discard changes in working directory)
281 modified: dir1/modified
284 (use "git add <file>..." to include in what will be committed)
288 (use "git add -f <file>..." to include in what will be committed)
298 git status --ignored >output &&
299 test_i18ncmp expect output
302 test_expect_success 'status with gitignore (nothing untracked)' '
306 echo "dir2/modified" &&
311 cat >expect <<-\EOF &&
315 git status -s >output &&
316 test_cmp expect output &&
318 cat >expect <<-\EOF &&
330 git status -s --ignored >output &&
331 test_cmp expect output &&
333 cat >expect <<\EOF &&
335 Your branch and '\''upstream'\'' have diverged,
336 and have 1 and 2 different commits each, respectively.
337 (use "git pull" to merge the remote branch into yours)
339 Changes to be committed:
340 (use "git restore --staged <file>..." to unstage)
343 Changes not staged for commit:
344 (use "git add <file>..." to update what will be committed)
345 (use "git restore <file>..." to discard changes in working directory)
346 modified: dir1/modified
349 (use "git add -f <file>..." to include in what will be committed)
360 git status --ignored >output &&
361 test_i18ncmp expect output
364 cat >.gitignore <<\EOF
371 ## master...upstream [ahead 1, behind 2]
380 test_expect_success 'status -s -b' '
382 git status -s -b >output &&
383 test_i18ncmp expect output
387 test_expect_success 'status -s -z -b' '
388 tr "\\n" Q <expect >expect.q &&
389 mv expect.q expect &&
390 git status -s -z -b >output &&
391 nul_to_q <output >output.q &&
392 mv output.q output &&
393 test_i18ncmp expect output
396 test_expect_success 'setup dir3' '
398 : >dir3/untracked1 &&
402 test_expect_success 'status -uno' '
405 Your branch and '\''upstream'\'' have diverged,
406 and have 1 and 2 different commits each, respectively.
407 (use "git pull" to merge the remote branch into yours)
409 Changes to be committed:
410 (use "git restore --staged <file>..." to unstage)
413 Changes not staged for commit:
414 (use "git add <file>..." to update what will be committed)
415 (use "git restore <file>..." to discard changes in working directory)
416 modified: dir1/modified
418 Untracked files not listed (use -u option to show untracked files)
420 git status -uno >output &&
421 test_i18ncmp expect output
424 test_expect_success 'status (status.showUntrackedFiles no)' '
425 test_config status.showuntrackedfiles no &&
426 git status >output &&
427 test_i18ncmp expect output
430 test_expect_success 'status -uno (advice.statusHints false)' '
433 Your branch and '\''upstream'\'' have diverged,
434 and have 1 and 2 different commits each, respectively.
436 Changes to be committed:
439 Changes not staged for commit:
440 modified: dir1/modified
442 Untracked files not listed
444 test_config advice.statusHints false &&
445 git status -uno >output &&
446 test_i18ncmp expect output
453 test_expect_success 'status -s -uno' '
454 git status -s -uno >output &&
455 test_cmp expect output
458 test_expect_success 'status -s (status.showUntrackedFiles no)' '
459 git config status.showuntrackedfiles no &&
460 git status -s >output &&
461 test_cmp expect output
464 test_expect_success 'status -unormal' '
467 Your branch and '\''upstream'\'' have diverged,
468 and have 1 and 2 different commits each, respectively.
469 (use "git pull" to merge the remote branch into yours)
471 Changes to be committed:
472 (use "git restore --staged <file>..." to unstage)
475 Changes not staged for commit:
476 (use "git add <file>..." to update what will be committed)
477 (use "git restore <file>..." to discard changes in working directory)
478 modified: dir1/modified
481 (use "git add <file>..." to include in what will be committed)
489 git status -unormal >output &&
490 test_i18ncmp expect output
493 test_expect_success 'status (status.showUntrackedFiles normal)' '
494 test_config status.showuntrackedfiles normal &&
495 git status >output &&
496 test_i18ncmp expect output
508 test_expect_success 'status -s -unormal' '
509 git status -s -unormal >output &&
510 test_cmp expect output
513 test_expect_success 'status -s (status.showUntrackedFiles normal)' '
514 git config status.showuntrackedfiles normal &&
515 git status -s >output &&
516 test_cmp expect output
519 test_expect_success 'status -uall' '
522 Your branch and '\''upstream'\'' have diverged,
523 and have 1 and 2 different commits each, respectively.
524 (use "git pull" to merge the remote branch into yours)
526 Changes to be committed:
527 (use "git restore --staged <file>..." to unstage)
530 Changes not staged for commit:
531 (use "git add <file>..." to update what will be committed)
532 (use "git restore <file>..." to discard changes in working directory)
533 modified: dir1/modified
536 (use "git add <file>..." to include in what will be committed)
545 git status -uall >output &&
546 test_i18ncmp expect output
549 test_expect_success 'status (status.showUntrackedFiles all)' '
550 test_config status.showuntrackedfiles all &&
551 git status >output &&
552 test_i18ncmp expect output
555 test_expect_success 'teardown dir3' '
567 test_expect_success 'status -s -uall' '
568 test_unconfig status.showuntrackedfiles &&
569 git status -s -uall >output &&
570 test_cmp expect output
572 test_expect_success 'status -s (status.showUntrackedFiles all)' '
573 test_config status.showuntrackedfiles all &&
574 git status -s >output &&
576 test_cmp expect output
579 test_expect_success 'status with relative paths' '
580 cat >expect <<\EOF &&
582 Your branch and '\''upstream'\'' have diverged,
583 and have 1 and 2 different commits each, respectively.
584 (use "git pull" to merge the remote branch into yours)
586 Changes to be committed:
587 (use "git restore --staged <file>..." to unstage)
588 new file: ../dir2/added
590 Changes not staged for commit:
591 (use "git add <file>..." to update what will be committed)
592 (use "git restore <file>..." to discard changes in working directory)
596 (use "git add <file>..." to include in what will be committed)
603 (cd dir1 && git status) >output &&
604 test_i18ncmp expect output
615 test_expect_success 'status -s with relative paths' '
617 (cd dir1 && git status -s) >output &&
618 test_cmp expect output
631 test_expect_success 'status --porcelain ignores relative paths setting' '
633 (cd dir1 && git status --porcelain) >output &&
634 test_cmp expect output
638 test_expect_success 'setup unique colors' '
640 git config status.color.untracked blue &&
641 git config status.color.branch green &&
642 git config status.color.localBranch yellow &&
643 git config status.color.remoteBranch cyan
647 test_expect_success TTY 'status with color.ui' '
648 cat >expect <<\EOF &&
649 On branch <GREEN>master<RESET>
650 Your branch and '\''upstream'\'' have diverged,
651 and have 1 and 2 different commits each, respectively.
652 (use "git pull" to merge the remote branch into yours)
654 Changes to be committed:
655 (use "git restore --staged <file>..." to unstage)
656 <GREEN>new file: dir2/added<RESET>
658 Changes not staged for commit:
659 (use "git add <file>..." to update what will be committed)
660 (use "git restore <file>..." to discard changes in working directory)
661 <RED>modified: dir1/modified<RESET>
664 (use "git add <file>..." to include in what will be committed)
665 <BLUE>dir1/untracked<RESET>
666 <BLUE>dir2/modified<RESET>
667 <BLUE>dir2/untracked<RESET>
668 <BLUE>untracked<RESET>
671 test_config color.ui auto &&
672 test_terminal git status | test_decode_color >output &&
673 test_i18ncmp expect output
676 test_expect_success TTY 'status with color.status' '
677 test_config color.status auto &&
678 test_terminal git status | test_decode_color >output &&
679 test_i18ncmp expect output
683 <RED>M<RESET> dir1/modified
684 <GREEN>A<RESET> dir2/added
685 <BLUE>??<RESET> dir1/untracked
686 <BLUE>??<RESET> dir2/modified
687 <BLUE>??<RESET> dir2/untracked
688 <BLUE>??<RESET> untracked
691 test_expect_success TTY 'status -s with color.ui' '
693 git config color.ui auto &&
694 test_terminal git status -s | test_decode_color >output &&
695 test_cmp expect output
699 test_expect_success TTY 'status -s with color.status' '
701 git config --unset color.ui &&
702 git config color.status auto &&
703 test_terminal git status -s | test_decode_color >output &&
704 test_cmp expect output
709 ## <YELLOW>master<RESET>...<CYAN>upstream<RESET> [ahead <YELLOW>1<RESET>, behind <CYAN>2<RESET>]
710 <RED>M<RESET> dir1/modified
711 <GREEN>A<RESET> dir2/added
712 <BLUE>??<RESET> dir1/untracked
713 <BLUE>??<RESET> dir2/modified
714 <BLUE>??<RESET> dir2/untracked
715 <BLUE>??<RESET> untracked
718 test_expect_success TTY 'status -s -b with color.status' '
720 test_terminal git status -s -b | test_decode_color >output &&
721 test_i18ncmp expect output
734 test_expect_success TTY 'status --porcelain ignores color.ui' '
736 git config --unset color.status &&
737 git config color.ui auto &&
738 test_terminal git status --porcelain | test_decode_color >output &&
739 test_cmp expect output
743 test_expect_success TTY 'status --porcelain ignores color.status' '
745 git config --unset color.ui &&
746 git config color.status auto &&
747 test_terminal git status --porcelain | test_decode_color >output &&
748 test_cmp expect output
752 # recover unconditionally from color tests
753 git config --unset color.status
754 git config --unset color.ui
756 test_expect_success 'status --porcelain respects -b' '
758 git status --porcelain -b >output &&
760 echo "## master...upstream [ahead 1, behind 2]" &&
764 test_cmp expect output
770 test_expect_success 'status without relative paths' '
771 cat >expect <<\EOF &&
773 Your branch and '\''upstream'\'' have diverged,
774 and have 1 and 2 different commits each, respectively.
775 (use "git pull" to merge the remote branch into yours)
777 Changes to be committed:
778 (use "git restore --staged <file>..." to unstage)
781 Changes not staged for commit:
782 (use "git add <file>..." to update what will be committed)
783 (use "git restore <file>..." to discard changes in working directory)
784 modified: dir1/modified
787 (use "git add <file>..." to include in what will be committed)
794 test_config status.relativePaths false &&
795 (cd dir1 && git status) >output &&
796 test_i18ncmp expect output
809 test_expect_success 'status -s without relative paths' '
811 test_config status.relativePaths false &&
812 (cd dir1 && git status -s) >output &&
813 test_cmp expect output
817 test_expect_success 'dry-run of partial commit excluding new file in index' '
820 Your branch and '\''upstream'\'' have diverged,
821 and have 1 and 2 different commits each, respectively.
822 (use "git pull" to merge the remote branch into yours)
824 Changes to be committed:
825 (use "git restore --staged <file>..." to unstage)
826 modified: dir1/modified
829 (use "git add <file>..." to include in what will be committed)
835 git commit --dry-run dir1/modified >output &&
836 test_i18ncmp expect output
840 :100644 100644 $EMPTY_BLOB $ZERO_OID M dir1/modified
842 test_expect_success 'status refreshes the index' '
845 git diff-files >output &&
846 test_cmp expect output
849 test_expect_success 'status shows detached HEAD properly after checking out non-local upstream branch' '
850 test_when_finished rm -rf upstream downstream actual &&
852 test_create_repo upstream &&
853 test_commit -C upstream foo &&
855 git clone upstream downstream &&
856 git -C downstream checkout @{u} &&
857 git -C downstream status >actual &&
858 test_i18ngrep "HEAD detached at [0-9a-f]\\+" actual
861 test_expect_success 'setup status submodule summary' '
862 test_create_repo sm && (
866 git commit -m "Add foo"
871 test_expect_success 'status submodule summary is disabled by default' '
874 Your branch and '\''upstream'\'' have diverged,
875 and have 1 and 2 different commits each, respectively.
876 (use "git pull" to merge the remote branch into yours)
878 Changes to be committed:
879 (use "git restore --staged <file>..." to unstage)
883 Changes not staged for commit:
884 (use "git add <file>..." to update what will be committed)
885 (use "git restore <file>..." to discard changes in working directory)
886 modified: dir1/modified
889 (use "git add <file>..." to include in what will be committed)
896 git status >output &&
897 test_i18ncmp expect output
900 # we expect the same as the previous test
901 test_expect_success 'status --untracked-files=all does not show submodule' '
902 git status --untracked-files=all >output &&
903 test_i18ncmp expect output
915 test_expect_success 'status -s submodule summary is disabled by default' '
916 git status -s >output &&
917 test_cmp expect output
920 # we expect the same as the previous test
921 test_expect_success 'status -s --untracked-files=all does not show submodule' '
922 git status -s --untracked-files=all >output &&
923 test_cmp expect output
926 head=$(cd sm && git rev-parse --short=7 --verify HEAD)
928 test_expect_success 'status submodule summary' '
931 Your branch and '\''upstream'\'' have diverged,
932 and have 1 and 2 different commits each, respectively.
933 (use "git pull" to merge the remote branch into yours)
935 Changes to be committed:
936 (use "git restore --staged <file>..." to unstage)
940 Changes not staged for commit:
941 (use "git add <file>..." to update what will be committed)
942 (use "git restore <file>..." to discard changes in working directory)
943 modified: dir1/modified
945 Submodule changes to be committed:
947 * sm 0000000...$head (1):
951 (use "git add <file>..." to include in what will be committed)
958 git config status.submodulesummary 10 &&
959 git status >output &&
960 test_i18ncmp expect output
963 test_expect_success 'status submodule summary with status.displayCommentPrefix=false' '
964 strip_comments expect &&
965 git -c status.displayCommentPrefix=false status >output &&
966 test_i18ncmp expect output
969 test_expect_success 'commit with submodule summary ignores status.displayCommentPrefix' '
970 commit_template_commented
982 test_expect_success 'status -s submodule summary' '
983 git status -s >output &&
984 test_cmp expect output
987 test_expect_success 'status submodule summary (clean submodule): commit' '
990 Your branch and '\''upstream'\'' have diverged,
991 and have 2 and 2 different commits each, respectively.
992 (use "git pull" to merge the remote branch into yours)
994 Changes not staged for commit:
995 (use "git add <file>..." to update what will be committed)
996 (use "git restore <file>..." to discard changes in working directory)
997 modified: dir1/modified
1000 (use "git add <file>..." to include in what will be committed)
1006 no changes added to commit (use "git add" and/or "git commit -a")
1008 git commit -m "commit submodule" &&
1009 git config status.submodulesummary 10 &&
1010 test_must_fail git commit --dry-run >output &&
1011 test_i18ncmp expect output &&
1012 git status >output &&
1013 test_i18ncmp expect output
1023 test_expect_success 'status -s submodule summary (clean submodule)' '
1024 git status -s >output &&
1025 test_cmp expect output
1028 test_expect_success 'status -z implies porcelain' '
1029 git status --porcelain |
1030 perl -pe "s/\012/\000/g" >expect &&
1031 git status -z >output &&
1032 test_cmp expect output
1035 test_expect_success 'commit --dry-run submodule summary (--amend)' '
1036 cat >expect <<EOF &&
1038 Your branch and '\''upstream'\'' have diverged,
1039 and have 2 and 2 different commits each, respectively.
1040 (use "git pull" to merge the remote branch into yours)
1042 Changes to be committed:
1043 (use "git restore --source=HEAD^1 --staged <file>..." to unstage)
1044 new file: dir2/added
1047 Changes not staged for commit:
1048 (use "git add <file>..." to update what will be committed)
1049 (use "git restore <file>..." to discard changes in working directory)
1050 modified: dir1/modified
1052 Submodule changes to be committed:
1054 * sm 0000000...$head (1):
1058 (use "git add <file>..." to include in what will be committed)
1065 git config status.submodulesummary 10 &&
1066 git commit --dry-run --amend >output &&
1067 test_i18ncmp expect output
1070 test_expect_success POSIXPERM,SANITY 'status succeeds in a read-only repository' '
1071 test_when_finished "chmod 775 .git" &&
1074 # make dir1/tracked stat-dirty
1075 >dir1/tracked1 && mv -f dir1/tracked1 dir1/tracked &&
1076 git status -s >output &&
1077 ! grep dir1/tracked output &&
1078 # make sure "status" succeeded without writing index out
1079 git diff-files | grep dir1/tracked
1083 (cd sm && echo > bar && git add bar && git commit -q -m 'Add bar') && git add sm
1084 new_head=$(cd sm && git rev-parse --short=7 --verify HEAD)
1087 test_expect_success '--ignore-submodules=untracked suppresses submodules with untracked content' '
1088 cat > expect << EOF &&
1090 Your branch and '\''upstream'\'' have diverged,
1091 and have 2 and 2 different commits each, respectively.
1092 (use "git pull" to merge the remote branch into yours)
1094 Changes to be committed:
1095 (use "git restore --staged <file>..." to unstage)
1098 Changes not staged for commit:
1099 (use "git add <file>..." to update what will be committed)
1100 (use "git restore <file>..." to discard changes in working directory)
1101 modified: dir1/modified
1103 Submodule changes to be committed:
1105 * sm $head...$new_head (1):
1109 (use "git add <file>..." to include in what will be committed)
1117 echo modified sm/untracked &&
1118 git status --ignore-submodules=untracked >output &&
1119 test_i18ncmp expect output
1122 test_expect_success '.gitmodules ignore=untracked suppresses submodules with untracked content' '
1123 test_config diff.ignoreSubmodules dirty &&
1124 git status >output &&
1125 test_i18ncmp expect output &&
1126 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1127 git config --add -f .gitmodules submodule.subname.path sm &&
1128 git status >output &&
1129 test_i18ncmp expect output &&
1130 git config -f .gitmodules --remove-section submodule.subname
1133 test_expect_success '.git/config ignore=untracked suppresses submodules with untracked content' '
1134 git config --add -f .gitmodules submodule.subname.ignore none &&
1135 git config --add -f .gitmodules submodule.subname.path sm &&
1136 git config --add submodule.subname.ignore untracked &&
1137 git config --add submodule.subname.path sm &&
1138 git status >output &&
1139 test_i18ncmp expect output &&
1140 git config --remove-section submodule.subname &&
1141 git config --remove-section -f .gitmodules submodule.subname
1144 test_expect_success '--ignore-submodules=dirty suppresses submodules with untracked content' '
1145 git status --ignore-submodules=dirty >output &&
1146 test_i18ncmp expect output
1149 test_expect_success '.gitmodules ignore=dirty suppresses submodules with untracked content' '
1150 test_config diff.ignoreSubmodules dirty &&
1151 git status >output &&
1153 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1154 git config --add -f .gitmodules submodule.subname.path sm &&
1155 git status >output &&
1156 test_i18ncmp expect output &&
1157 git config -f .gitmodules --remove-section submodule.subname
1160 test_expect_success '.git/config ignore=dirty suppresses submodules with untracked content' '
1161 git config --add -f .gitmodules submodule.subname.ignore none &&
1162 git config --add -f .gitmodules submodule.subname.path sm &&
1163 git config --add submodule.subname.ignore dirty &&
1164 git config --add submodule.subname.path sm &&
1165 git status >output &&
1166 test_i18ncmp expect output &&
1167 git config --remove-section submodule.subname &&
1168 git config -f .gitmodules --remove-section submodule.subname
1171 test_expect_success '--ignore-submodules=dirty suppresses submodules with modified content' '
1172 echo modified >sm/foo &&
1173 git status --ignore-submodules=dirty >output &&
1174 test_i18ncmp expect output
1177 test_expect_success '.gitmodules ignore=dirty suppresses submodules with modified content' '
1178 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1179 git config --add -f .gitmodules submodule.subname.path sm &&
1180 git status >output &&
1181 test_i18ncmp expect output &&
1182 git config -f .gitmodules --remove-section submodule.subname
1185 test_expect_success '.git/config ignore=dirty suppresses submodules with modified content' '
1186 git config --add -f .gitmodules submodule.subname.ignore none &&
1187 git config --add -f .gitmodules submodule.subname.path sm &&
1188 git config --add submodule.subname.ignore dirty &&
1189 git config --add submodule.subname.path sm &&
1190 git status >output &&
1191 test_i18ncmp expect output &&
1192 git config --remove-section submodule.subname &&
1193 git config -f .gitmodules --remove-section submodule.subname
1196 test_expect_success "--ignore-submodules=untracked doesn't suppress submodules with modified content" '
1197 cat > expect << EOF &&
1199 Your branch and '\''upstream'\'' have diverged,
1200 and have 2 and 2 different commits each, respectively.
1201 (use "git pull" to merge the remote branch into yours)
1203 Changes to be committed:
1204 (use "git restore --staged <file>..." to unstage)
1207 Changes not staged for commit:
1208 (use "git add <file>..." to update what will be committed)
1209 (use "git restore <file>..." to discard changes in working directory)
1210 (commit or discard the untracked or modified content in submodules)
1211 modified: dir1/modified
1212 modified: sm (modified content)
1214 Submodule changes to be committed:
1216 * sm $head...$new_head (1):
1220 (use "git add <file>..." to include in what will be committed)
1228 git status --ignore-submodules=untracked > output &&
1229 test_i18ncmp expect output
1232 test_expect_success ".gitmodules ignore=untracked doesn't suppress submodules with modified content" '
1233 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1234 git config --add -f .gitmodules submodule.subname.path sm &&
1235 git status >output &&
1236 test_i18ncmp expect output &&
1237 git config -f .gitmodules --remove-section submodule.subname
1240 test_expect_success ".git/config ignore=untracked doesn't suppress submodules with modified content" '
1241 git config --add -f .gitmodules submodule.subname.ignore none &&
1242 git config --add -f .gitmodules submodule.subname.path sm &&
1243 git config --add submodule.subname.ignore untracked &&
1244 git config --add submodule.subname.path sm &&
1245 git status >output &&
1246 test_i18ncmp expect output &&
1247 git config --remove-section submodule.subname &&
1248 git config -f .gitmodules --remove-section submodule.subname
1251 head2=$(cd sm && git commit -q -m "2nd commit" foo && git rev-parse --short=7 --verify HEAD)
1253 test_expect_success "--ignore-submodules=untracked doesn't suppress submodule summary" '
1254 cat > expect << EOF &&
1256 Your branch and '\''upstream'\'' have diverged,
1257 and have 2 and 2 different commits each, respectively.
1258 (use "git pull" to merge the remote branch into yours)
1260 Changes to be committed:
1261 (use "git restore --staged <file>..." to unstage)
1264 Changes not staged for commit:
1265 (use "git add <file>..." to update what will be committed)
1266 (use "git restore <file>..." to discard changes in working directory)
1267 modified: dir1/modified
1268 modified: sm (new commits)
1270 Submodule changes to be committed:
1272 * sm $head...$new_head (1):
1275 Submodules changed but not updated:
1277 * sm $new_head...$head2 (1):
1281 (use "git add <file>..." to include in what will be committed)
1289 git status --ignore-submodules=untracked > output &&
1290 test_i18ncmp expect output
1293 test_expect_success ".gitmodules ignore=untracked doesn't suppress submodule summary" '
1294 git config --add -f .gitmodules submodule.subname.ignore untracked &&
1295 git config --add -f .gitmodules submodule.subname.path sm &&
1296 git status >output &&
1297 test_i18ncmp expect output &&
1298 git config -f .gitmodules --remove-section submodule.subname
1301 test_expect_success ".git/config ignore=untracked doesn't suppress submodule summary" '
1302 git config --add -f .gitmodules submodule.subname.ignore none &&
1303 git config --add -f .gitmodules submodule.subname.path sm &&
1304 git config --add submodule.subname.ignore untracked &&
1305 git config --add submodule.subname.path sm &&
1306 git status >output &&
1307 test_i18ncmp expect output &&
1308 git config --remove-section submodule.subname &&
1309 git config -f .gitmodules --remove-section submodule.subname
1312 test_expect_success "--ignore-submodules=dirty doesn't suppress submodule summary" '
1313 git status --ignore-submodules=dirty > output &&
1314 test_i18ncmp expect output
1316 test_expect_success ".gitmodules ignore=dirty doesn't suppress submodule summary" '
1317 git config --add -f .gitmodules submodule.subname.ignore dirty &&
1318 git config --add -f .gitmodules submodule.subname.path sm &&
1319 git status >output &&
1320 test_i18ncmp expect output &&
1321 git config -f .gitmodules --remove-section submodule.subname
1324 test_expect_success ".git/config ignore=dirty doesn't suppress submodule summary" '
1325 git config --add -f .gitmodules submodule.subname.ignore none &&
1326 git config --add -f .gitmodules submodule.subname.path sm &&
1327 git config --add submodule.subname.ignore dirty &&
1328 git config --add submodule.subname.path sm &&
1329 git status >output &&
1330 test_i18ncmp expect output &&
1331 git config --remove-section submodule.subname &&
1332 git config -f .gitmodules --remove-section submodule.subname
1337 ; Your branch and 'upstream' have diverged,
1338 ; and have 2 and 2 different commits each, respectively.
1339 ; (use "git pull" to merge the remote branch into yours)
1341 ; Changes to be committed:
1342 ; (use "git restore --staged <file>..." to unstage)
1345 ; Changes not staged for commit:
1346 ; (use "git add <file>..." to update what will be committed)
1347 ; (use "git restore <file>..." to discard changes in working directory)
1348 ; modified: dir1/modified
1349 ; modified: sm (new commits)
1351 ; Submodule changes to be committed:
1353 ; * sm $head...$new_head (1):
1356 ; Submodules changed but not updated:
1358 ; * sm $new_head...$head2 (1):
1362 ; (use "git add <file>..." to include in what will be committed)
1371 test_expect_success "status (core.commentchar with submodule summary)" '
1372 test_config core.commentchar ";" &&
1373 git -c status.displayCommentPrefix=true status >output &&
1374 test_i18ncmp expect output
1377 test_expect_success "status (core.commentchar with two chars with submodule summary)" '
1378 test_config core.commentchar ";;" &&
1379 test_must_fail git -c status.displayCommentPrefix=true status
1382 test_expect_success "--ignore-submodules=all suppresses submodule summary" '
1383 cat > expect << EOF &&
1385 Your branch and '\''upstream'\'' have diverged,
1386 and have 2 and 2 different commits each, respectively.
1387 (use "git pull" to merge the remote branch into yours)
1389 Changes not staged for commit:
1390 (use "git add <file>..." to update what will be committed)
1391 (use "git restore <file>..." to discard changes in working directory)
1392 modified: dir1/modified
1395 (use "git add <file>..." to include in what will be committed)
1402 no changes added to commit (use "git add" and/or "git commit -a")
1404 git status --ignore-submodules=all > output &&
1405 test_i18ncmp expect output
1408 test_expect_success '.gitmodules ignore=all suppresses unstaged submodule summary' '
1409 cat > expect << EOF &&
1411 Your branch and '\''upstream'\'' have diverged,
1412 and have 2 and 2 different commits each, respectively.
1413 (use "git pull" to merge the remote branch into yours)
1415 Changes to be committed:
1416 (use "git restore --staged <file>..." to unstage)
1419 Changes not staged for commit:
1420 (use "git add <file>..." to update what will be committed)
1421 (use "git restore <file>..." to discard changes in working directory)
1422 modified: dir1/modified
1425 (use "git add <file>..." to include in what will be committed)
1433 git config --add -f .gitmodules submodule.subname.ignore all &&
1434 git config --add -f .gitmodules submodule.subname.path sm &&
1435 git status > output &&
1436 test_i18ncmp expect output &&
1437 git config -f .gitmodules --remove-section submodule.subname
1440 test_expect_success '.git/config ignore=all suppresses unstaged submodule summary' '
1441 git config --add -f .gitmodules submodule.subname.ignore none &&
1442 git config --add -f .gitmodules submodule.subname.path sm &&
1443 git config --add submodule.subname.ignore all &&
1444 git config --add submodule.subname.path sm &&
1445 git status > output &&
1446 test_i18ncmp expect output &&
1447 git config --remove-section submodule.subname &&
1448 git config -f .gitmodules --remove-section submodule.subname
1451 test_expect_success 'setup of test environment' '
1452 git config status.showUntrackedFiles no &&
1453 git status -s >expected_short &&
1454 git status --no-short >expected_noshort
1457 test_expect_success '"status.short=true" same as "-s"' '
1458 git -c status.short=true status >actual &&
1459 test_cmp expected_short actual
1462 test_expect_success '"status.short=true" weaker than "--no-short"' '
1463 git -c status.short=true status --no-short >actual &&
1464 test_cmp expected_noshort actual
1467 test_expect_success '"status.short=false" same as "--no-short"' '
1468 git -c status.short=false status >actual &&
1469 test_cmp expected_noshort actual
1472 test_expect_success '"status.short=false" weaker than "-s"' '
1473 git -c status.short=false status -s >actual &&
1474 test_cmp expected_short actual
1477 test_expect_success '"status.branch=true" same as "-b"' '
1478 git status -sb >expected_branch &&
1479 git -c status.branch=true status -s >actual &&
1480 test_cmp expected_branch actual
1483 test_expect_success '"status.branch=true" different from "--no-branch"' '
1484 git status -s --no-branch >expected_nobranch &&
1485 git -c status.branch=true status -s >actual &&
1486 ! test_cmp expected_nobranch actual
1489 test_expect_success '"status.branch=true" weaker than "--no-branch"' '
1490 git -c status.branch=true status -s --no-branch >actual &&
1491 test_cmp expected_nobranch actual
1494 test_expect_success '"status.branch=true" weaker than "--porcelain"' '
1495 git -c status.branch=true status --porcelain >actual &&
1496 test_cmp expected_nobranch actual
1499 test_expect_success '"status.branch=false" same as "--no-branch"' '
1500 git -c status.branch=false status -s >actual &&
1501 test_cmp expected_nobranch actual
1504 test_expect_success '"status.branch=false" weaker than "-b"' '
1505 git -c status.branch=false status -sb >actual &&
1506 test_cmp expected_branch actual
1509 test_expect_success 'Restore default test environment' '
1510 git config --unset status.showUntrackedFiles
1513 test_expect_success 'git commit will commit a staged but ignored submodule' '
1514 git config --add -f .gitmodules submodule.subname.ignore all &&
1515 git config --add -f .gitmodules submodule.subname.path sm &&
1516 git config --add submodule.subname.ignore all &&
1517 git status -s --ignore-submodules=dirty >output &&
1518 test_i18ngrep "^M. sm" output &&
1519 GIT_EDITOR="echo hello >>\"\$1\"" &&
1520 export GIT_EDITOR &&
1522 git status -s --ignore-submodules=dirty >output &&
1523 test_i18ngrep ! "^M. sm" output
1526 test_expect_success 'git commit --dry-run will show a staged but ignored submodule' '
1529 cat >expect << EOF &&
1531 Your branch and '\''upstream'\'' have diverged,
1532 and have 2 and 2 different commits each, respectively.
1533 (use "git pull" to merge the remote branch into yours)
1535 Changes to be committed:
1536 (use "git restore --staged <file>..." to unstage)
1539 Changes not staged for commit:
1540 (use "git add <file>..." to update what will be committed)
1541 (use "git restore <file>..." to discard changes in working directory)
1542 modified: dir1/modified
1544 Untracked files not listed (use -u option to show untracked files)
1546 git commit -uno --dry-run >output &&
1547 test_i18ncmp expect output &&
1548 git status -s --ignore-submodules=dirty >output &&
1549 test_i18ngrep "^M. sm" output
1552 test_expect_success 'git commit -m will commit a staged but ignored submodule' '
1553 git commit -uno -m message &&
1554 git status -s --ignore-submodules=dirty >output &&
1555 test_i18ngrep ! "^M. sm" output &&
1556 git config --remove-section submodule.subname &&
1557 git config -f .gitmodules --remove-section submodule.subname
1560 test_expect_success 'show stash info with "--show-stash"' '
1566 git status >expected_default &&
1567 git status --show-stash >expected_with_stash &&
1568 test_i18ngrep "^Your stash currently has 1 entry$" expected_with_stash
1571 test_expect_success 'no stash info with "--show-stash --no-show-stash"' '
1572 git status --show-stash --no-show-stash >expected_without_stash &&
1573 test_cmp expected_default expected_without_stash
1576 test_expect_success '"status.showStash=false" weaker than "--show-stash"' '
1577 git -c status.showStash=false status --show-stash >actual &&
1578 test_cmp expected_with_stash actual
1581 test_expect_success '"status.showStash=true" weaker than "--no-show-stash"' '
1582 git -c status.showStash=true status --no-show-stash >actual &&
1583 test_cmp expected_without_stash actual
1586 test_expect_success 'no additional info if no stash entries' '
1588 git -c status.showStash=true status >actual &&
1589 test_cmp expected_without_stash actual
1592 test_expect_success '"No commits yet" should be noted in status output' '
1593 git checkout --orphan empty-branch-1 &&
1594 git status >output &&
1595 test_i18ngrep "No commits yet" output
1598 test_expect_success '"No commits yet" should not be noted in status output' '
1599 git checkout --orphan empty-branch-2 &&
1600 test_commit test-commit-1 &&
1601 git status >output &&
1602 test_i18ngrep ! "No commits yet" output
1605 test_expect_success '"Initial commit" should be noted in commit template' '
1606 git checkout --orphan empty-branch-3 &&
1607 touch to_be_committed_1 &&
1608 git add to_be_committed_1 &&
1609 git commit --dry-run >output &&
1610 test_i18ngrep "Initial commit" output
1613 test_expect_success '"Initial commit" should not be noted in commit template' '
1614 git checkout --orphan empty-branch-4 &&
1615 test_commit test-commit-2 &&
1616 touch to_be_committed_2 &&
1617 git add to_be_committed_2 &&
1618 git commit --dry-run >output &&
1619 test_i18ngrep ! "Initial commit" output
1622 test_expect_success '--no-optional-locks prevents index update' '
1623 test-tool chmtime =1234567890 .git/index &&
1624 git --no-optional-locks status &&
1625 test-tool chmtime --get .git/index >out &&
1626 grep ^1234567890 out &&
1628 test-tool chmtime --get .git/index >out &&
1629 ! grep ^1234567890 out