3 test_description
='add -i basic tests'
4 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
=main
5 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8 .
"$TEST_DIRECTORY"/lib-terminal.sh
10 if test_have_prereq
!PERL
12 skip_all
='skipping add -i (scripted) tests, perl not available'
19 sed -e '/^index/s/[0-9a-f]*[1-9a-f][0-9a-f]*\.\./1234567../' \
20 -e '/^index/s/\.\.[0-9a-f]*[1-9a-f][0-9a-f]*/..9abcdef/' \
21 -e '/^index/s/ 00*\.\./ 0000000../' \
22 -e '/^index/s/\.\.00*$/..0000000/' \
23 -e '/^index/s/\.\.00* /..0000000 /' \
26 test_cmp
"$1.filtered" "$2.filtered"
29 # This function uses a trick to manipulate the interactive add to use color:
30 # the `want_color()` function special-cases the situation where a pager was
31 # spawned and Git now wants to output colored text: to detect that situation,
32 # the environment variable `GIT_PAGER_IN_USE` is set. However, color is
33 # suppressed despite that environment variable if the `TERM` variable
34 # indicates a dumb terminal, so we set that variable, too.
37 # The first element of $@ may be a shell function, as a result POSIX
38 # does not guarantee that "one-shot assignment" will not persist after
39 # the function call. Thus, we prevent these variables from escaping
40 # this function's context with this subshell.
42 GIT_PAGER_IN_USE
=true
&&
44 export GIT_PAGER_IN_USE TERM
&&
49 test_expect_success
'warn about add.interactive.useBuiltin' '
50 cat >expect <<-\EOF &&
51 warning: the add.interactive.useBuiltin setting has been removed!
52 See its entry in '\''git help config'\'' for details.
56 for v in = =true =false
58 git -c "add.interactive.useBuiltin$v" add -p >out 2>actual &&
59 test_must_be_empty out &&
60 test_cmp expect actual || return 1
64 test_expect_success
'setup (initial)' '
70 test_expect_success
'status works (initial)' '
71 git add -i </dev/null >output &&
72 grep "+1/-0 *+2/-0 file" output
75 test_expect_success
'setup expected' '
78 index 0000000..d95f3ad
86 test_expect_success
'diff works (initial)' '
87 test_write_lines d 1 | git add -i >output &&
88 sed -ne "/new file/,/content/p" <output >diff &&
89 diff_cmp expected diff
91 test_expect_success
'revert works (initial)' '
93 test_write_lines r 1 | git add -i &&
94 git ls-files >output &&
98 test_expect_success
'add untracked (multiple)' '
99 test_when_finished "git reset && rm [1-9]" &&
100 touch $(test_seq 9) &&
101 test_write_lines a "2-5 8-" | git add -i -- [1-9] &&
102 test_write_lines 2 3 4 5 8 9 >expected &&
103 git ls-files [1-9] >output &&
104 test_cmp expected output
107 test_expect_success
'setup (commit)' '
108 echo baseline >file &&
110 git commit -m commit &&
111 echo content >>file &&
116 test_expect_success
'status works (commit)' '
117 git add -i </dev/null >output &&
118 grep "+1/-0 *+2/-0 file" output
121 test_expect_success
'update can stage deletions' '
125 test_write_lines u t "" | git add -i &&
126 git ls-files to-delete >output &&
127 test_must_be_empty output
130 test_expect_success
'setup expected' '
131 cat >expected <<-\EOF
132 index 180b47c..b6f2c08 100644
141 test_expect_success
'diff works (commit)' '
142 test_write_lines d 1 | git add -i >output &&
143 sed -ne "/^index/,/content/p" <output >diff &&
144 diff_cmp expected diff
146 test_expect_success
'revert works (commit)' '
148 test_write_lines r 1 | git add -i &&
149 git add -i </dev/null >output &&
150 grep "unchanged *+3/-0 file" output
153 test_expect_success
'setup expected' '
154 cat >expected <<-\EOF
158 test_expect_success
'dummy edit works' '
160 test_write_lines e a | git add -p &&
162 diff_cmp expected diff
165 test_expect_success
'setup patch' '
175 test_expect_success
'setup fake editor' '
176 write_script "fake_editor.sh" <<-\EOF &&
177 mv -f "$1" oldpatch &&
180 test_set_editor "$(pwd)/fake_editor.sh"
183 test_expect_success
'bad edit rejected' '
185 test_write_lines e n d | git add -p >output &&
186 grep "hunk does not apply" output
189 test_expect_success
'setup patch' '
196 test_expect_success
'garbage edit rejected' '
198 test_write_lines e n d | git add -p >output &&
199 grep "hunk does not apply" output
202 test_expect_success
'setup patch' '
212 test_expect_success
'setup expected' '
213 cat >expected <<-\EOF
214 diff --git a/file b/file
215 index b5dd6c9..f910ae9 100644
227 test_expect_success
'real edit works' '
228 test_write_lines e n d | git add -p &&
230 diff_cmp expected output
233 test_expect_success
'setup file' '
234 test_write_lines a "" b "" c >file &&
236 test_write_lines a "" d "" c >file
239 test_expect_success
'setup patch' '
253 test_expect_success
'setup expected' '
255 diff --git a/file b/file
256 index b5dd6c9..f910ae9 100644
269 test_expect_success
'edit can strip spaces from empty context lines' '
270 test_write_lines e n q | git add -p 2>error &&
271 test_must_be_empty error &&
273 diff_cmp expected output
276 test_expect_success
'skip files similarly as commit -a' '
278 echo file >.gitignore &&
279 echo changed >file &&
280 echo y | git add -p file &&
283 git commit -am commit &&
284 git diff >expected &&
285 diff_cmp expected output &&
286 git reset --hard HEAD^
290 test_expect_success FILEMODE
'patch does not affect mode' '
292 echo content >>file &&
294 printf "n\\ny\\n" | git add -p &&
295 git show :file | grep content &&
296 git diff file | grep "new mode"
299 test_expect_success FILEMODE
'stage mode but not hunk' '
301 echo content >>file &&
303 printf "y\\nn\\n" | git add -p &&
304 git diff --cached file | grep "new mode" &&
305 git diff file | grep "+content"
309 test_expect_success FILEMODE
'stage mode and hunk' '
311 echo content >>file &&
313 printf "y\\ny\\n" | git add -p &&
314 git diff --cached file | grep "new mode" &&
315 git diff --cached file | grep "+content" &&
316 test -z "$(git diff file)"
319 # end of tests disabled when filemode is not usable
321 test_expect_success
'different prompts for mode change/deleted' '
325 git add --chmod=+x file deleted &&
326 echo changed >file &&
328 test_write_lines n n n |
329 git -c core.filemode=true add -p >actual &&
330 sed -n "s/^\(([0-9/]*) Stage .*?\).*/\1/p" actual >actual.filtered &&
331 cat >expect <<-\EOF &&
332 (1/1) Stage deletion [y,n,q,a,d,?]?
333 (1/2) Stage mode change [y,n,q,a,d,j,J,g,/,?]?
334 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]?
336 test_cmp expect actual.filtered
339 test_expect_success
'correct message when there is nothing to do' '
342 test_i18ngrep "No changes" err &&
343 printf "\\0123" >binary &&
345 printf "\\0abc" >binary &&
347 test_i18ngrep "Only binary files changed" err
350 test_expect_success
'setup again' '
352 test_chmod +x file &&
353 echo content >>file &&
354 test_write_lines A B C D>file2 &&
358 # Write the patch file with a new line at the top and bottom
359 test_expect_success
'setup patch' '
361 index 180b47c..b6f2c08 100644
369 \ No newline at end of file
370 diff --git a/file2 b/file2
371 index 8422d40..35b930a 100644
385 # Expected output, diff is similar to the patch but w/ diff at the top
386 test_expect_success
'setup expected' '
387 echo diff --git a/file b/file >expected &&
388 sed -e "/^index 180b47c/s/ 100644/ 100755/" \
390 -e /Y/d patch >>expected &&
391 cat >expected-output <<-\EOF
399 \ No newline at end of file
408 \ No newline at end of file
434 # Test splitting the first patch, then adding both
435 test_expect_success
'add first line works' '
436 git commit -am "clear local changes" &&
438 test_write_lines s y y s y n y | git add -p 2>error >raw-output &&
439 sed -n -e "s/^([1-9]\/[1-9]) Stage this hunk[^@]*\(@@ .*\)/\1/" \
440 -e "/^[-+@ \\\\]"/p raw-output >output &&
441 test_must_be_empty error &&
442 git diff --cached >diff &&
443 diff_cmp expected diff &&
444 test_cmp expected-output output
447 test_expect_success
'setup expected' '
448 cat >expected <<-\EOF
449 diff --git a/non-empty b/non-empty
450 deleted file mode 100644
451 index d95f3ad..0000000
459 test_expect_success
'deleting a non-empty file' '
461 echo content >non-empty &&
463 git commit -m non-empty &&
465 echo y | git add -p non-empty &&
466 git diff --cached >diff &&
467 diff_cmp expected diff
470 test_expect_success
'setup expected' '
471 cat >expected <<-\EOF
472 diff --git a/empty b/empty
473 deleted file mode 100644
474 index e69de29..0000000
478 test_expect_success
'deleting an empty file' '
482 git commit -m empty &&
484 echo y | git add -p empty &&
485 git diff --cached >diff &&
486 diff_cmp expected diff
489 test_expect_success
'adding an empty file' '
493 test_commit initial &&
497 git commit -m empty &&
498 git tag added-file &&
499 git reset --hard HEAD^ &&
500 test_path_is_missing empty &&
502 echo y | git checkout -p added-file -- >actual &&
503 test_path_is_file empty &&
504 test_i18ngrep "Apply addition to index and worktree" actual
508 test_expect_success
'split hunk setup' '
510 test_write_lines 10 20 30 40 50 60 >test &&
513 git commit -m test &&
515 test_write_lines 10 15 20 21 22 23 24 30 40 50 60 >test
518 test_expect_success
'goto hunk' '
519 test_when_finished "git reset" &&
520 tr _ " " >expect <<-EOF &&
521 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? + 1: -1,2 +1,3 +15
523 go to which hunk? @@ -1,2 +1,3 @@
527 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
529 test_write_lines s y g 1 | git add -p >actual &&
530 tail -n 7 <actual >actual.trimmed &&
531 test_cmp expect actual.trimmed
534 test_expect_success
'navigate to hunk via regex' '
535 test_when_finished "git reset" &&
536 tr _ " " >expect <<-EOF &&
537 (2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? @@ -1,2 +1,3 @@
541 (1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?_
543 test_write_lines s y /1,2 | git add -p >actual &&
544 tail -n 5 <actual >actual.trimmed &&
545 test_cmp expect actual.trimmed
548 test_expect_success
'split hunk "add -p (edit)"' '
549 # Split, say Edit and do nothing. Then:
551 # 1. Broken version results in a patch that does not apply and
552 # only takes [y/n] (edit again) so the first q is discarded
553 # and then n attempts to discard the edit. Repeat q enough
556 # 2. Correct version applies the (not)edited version, and asks
557 # about the next hunk, against which we say q and program
559 printf "%s\n" s e q n q q |
560 EDITOR=: git add -p &&
565 test_expect_success
'split hunk "add -p (no, yes, edit)"' '
566 test_write_lines 5 10 20 21 30 31 40 50 60 >test &&
568 # test sequence is s(plit), n(o), y(es), e(dit)
569 # q n q q is there to make sure we exit at the end.
570 printf "%s\n" s n y e q n q q |
571 EDITOR=: git add -p 2>error &&
572 test_must_be_empty error &&
577 test_expect_success
'split hunk with incomplete line at end' '
579 printf "missing LF" >>test &&
581 test_write_lines before 10 20 30 40 50 60 70 >test &&
582 git grep --cached missing &&
583 test_write_lines s n y q | git add -p &&
584 test_must_fail git grep --cached missing &&
586 test_must_fail git grep --cached before
589 test_expect_success
'edit, adding lines to the first hunk' '
590 test_write_lines 10 11 20 30 40 50 51 60 >test &&
592 tr _ " " >patch <<-EOF &&
602 # test sequence is s(plit), e(dit), n(o)
603 # q n q q is there to make sure we exit at the end.
604 printf "%s\n" s e n q n q q |
605 EDITOR=./fake_editor.sh git add -p 2>error &&
606 test_must_be_empty error &&
607 git diff --cached >actual &&
611 test_expect_success
'patch mode ignores unmerged entries' '
613 test_commit conflict &&
614 test_commit non-conflict &&
615 git checkout -b side &&
616 test_commit side conflict.t &&
618 test_commit main conflict.t &&
619 test_must_fail git merge side &&
620 echo changed >non-conflict.t &&
621 echo y | git add -p >output &&
622 ! grep a/conflict.t output &&
623 cat >expected <<-\EOF &&
624 * Unmerged path conflict.t
625 diff --git a/non-conflict.t b/non-conflict.t
626 index f766221..5ea2ed4 100644
633 git diff --cached >diff &&
634 diff_cmp expected diff
637 test_expect_success
'index is refreshed after applying patch' '
639 echo content >test &&
640 printf y | git add -p &&
641 git diff-files --exit-code
644 test_expect_success
'diffs can be colorized' '
647 echo content >test &&
649 force_color git add -p >output 2>&1 <y &&
650 git diff-files --exit-code &&
652 # We do not want to depend on the exact coloring scheme
653 # git uses for diffs, so just check that we saw some kind of color.
654 grep "$(printf "\\033")" output
657 test_expect_success
'colors can be overridden' '
659 test_when_finished "git rm -f color-test" &&
660 test_write_lines context old more-context >color-test &&
661 git add color-test &&
662 test_write_lines context new more-context another-one >color-test &&
664 echo trigger an error message >input &&
666 -c color.interactive.error=blue \
667 add -i 2>err.raw <input &&
668 test_decode_color <err.raw >err &&
669 grep "<BLUE>Huh (trigger)?<RESET>" err &&
671 test_write_lines help quit >input &&
673 -c color.interactive.header=red \
674 -c color.interactive.help=green \
675 -c color.interactive.prompt=yellow \
676 add -i >actual.raw <input &&
677 test_decode_color <actual.raw >actual &&
678 cat >expect <<-\EOF &&
679 <RED> staged unstaged path<RESET>
680 1: +3/-0 +2/-1 color-test
682 <RED>*** Commands ***<RESET>
683 1: <YELLOW>s<RESET>tatus 2: <YELLOW>u<RESET>pdate 3: <YELLOW>r<RESET>evert 4: <YELLOW>a<RESET>dd untracked
684 5: <YELLOW>p<RESET>atch 6: <YELLOW>d<RESET>iff 7: <YELLOW>q<RESET>uit 8: <YELLOW>h<RESET>elp
685 <YELLOW>What now<RESET>> <GREEN>status - show paths with changes<RESET>
686 <GREEN>update - add working tree state to the staged set of changes<RESET>
687 <GREEN>revert - revert staged set of changes back to the HEAD version<RESET>
688 <GREEN>patch - pick hunks and update selectively<RESET>
689 <GREEN>diff - view diff between HEAD and index<RESET>
690 <GREEN>add untracked - add contents of untracked files to the staged set of changes<RESET>
691 <RED>*** Commands ***<RESET>
692 1: <YELLOW>s<RESET>tatus 2: <YELLOW>u<RESET>pdate 3: <YELLOW>r<RESET>evert 4: <YELLOW>a<RESET>dd untracked
693 5: <YELLOW>p<RESET>atch 6: <YELLOW>d<RESET>iff 7: <YELLOW>q<RESET>uit 8: <YELLOW>h<RESET>elp
694 <YELLOW>What now<RESET>> Bye.
696 test_cmp expect actual &&
698 : exercise recolor_hunk by editing and then look at the hunk again &&
699 test_write_lines s e K q >input &&
701 -c color.interactive.prompt=yellow \
702 -c color.diff.meta=italic \
703 -c color.diff.frag=magenta \
704 -c color.diff.context=cyan \
705 -c color.diff.old=bold \
706 -c color.diff.new=blue \
707 -c core.editor=touch \
708 add -p >actual.raw <input &&
709 test_decode_color <actual.raw >actual.decoded &&
710 sed "s/index [0-9a-f]*\\.\\.[0-9a-f]* 100644/<INDEX-LINE>/" <actual.decoded >actual &&
711 cat >expect <<-\EOF &&
712 <ITALIC>diff --git a/color-test b/color-test<RESET>
713 <ITALIC><INDEX-LINE><RESET>
714 <ITALIC>--- a/color-test<RESET>
715 <ITALIC>+++ b/color-test<RESET>
716 <MAGENTA>@@ -1,3 +1,4 @@<RESET>
717 <CYAN> context<RESET>
719 <BLUE>+<RESET><BLUE>new<RESET>
720 <CYAN> more-context<RESET>
721 <BLUE>+<RESET><BLUE>another-one<RESET>
722 <YELLOW>(1/1) Stage this hunk [y,n,q,a,d,s,e,?]? <RESET><BOLD>Split into 2 hunks.<RESET>
723 <MAGENTA>@@ -1,3 +1,3 @@<RESET>
724 <CYAN> context<RESET>
726 <BLUE>+<RESET><BLUE>new<RESET>
727 <CYAN> more-context<RESET>
728 <YELLOW>(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? <RESET><MAGENTA>@@ -3 +3,2 @@<RESET>
729 <CYAN> more-context<RESET>
730 <BLUE>+<RESET><BLUE>another-one<RESET>
731 <YELLOW>(2/2) Stage this hunk [y,n,q,a,d,K,g,/,e,?]? <RESET><MAGENTA>@@ -1,3 +1,3 @@<RESET>
732 <CYAN> context<RESET>
735 <CYAN> more-context<RESET>
736 <YELLOW>(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? <RESET>
738 test_cmp expect actual
741 test_expect_success
'colorized diffs respect diff.wsErrorHighlight' '
749 force_color git -c diff.wsErrorHighlight=all add -p >output.raw 2>&1 <y &&
750 test_decode_color <output.raw >output &&
754 test_expect_success
'diffFilter filters diff' '
757 echo content >test &&
758 test_config interactive.diffFilter "sed s/^/foo:/" &&
760 force_color git add -p >output 2>&1 <y &&
762 # avoid depending on the exact coloring or content of the prompts,
763 # and just make sure we saw our diff prefixed
764 grep foo:.*content output
767 test_expect_success
'detect bogus diffFilter output' '
770 echo content >test &&
771 test_config interactive.diffFilter "sed 6d" &&
773 force_color test_must_fail git add -p <y >output 2>&1 &&
774 grep "mismatched output" output
777 test_expect_success
'handle iffy colored hunk headers' '
780 echo content >test &&
782 force_color git -c interactive.diffFilter="sed s/.*@@.*/XX/" \
783 add -p >output 2>&1 <n &&
787 test_expect_success
'handle very large filtered diff' '
789 # The specific number here is not important, but it must
790 # be large enough that the output of "git diff --color"
791 # fills up the pipe buffer. 10,000 results in ~200k of
793 test_seq 10000 >test &&
794 test_config interactive.diffFilter cat &&
796 force_color git add -p >output 2>&1 <y &&
797 git diff-files --exit-code -- test
800 test_expect_success
'diff.algorithm is passed to `git diff-files`' '
805 echo changed >file &&
806 test_must_fail git -c diff.algorithm=bogus add -p 2>err &&
807 test_i18ngrep "error: option diff-algorithm accepts " err
810 test_expect_success
'patch-mode via -i prompts for files' '
815 git add -i <<-\EOF &&
824 git diff --cached --name-only >actual &&
825 diff_cmp expect actual
828 test_expect_success
'add -p handles globs' '
833 echo base >subdir/two.c &&
835 git commit -m base &&
837 echo change >one.c &&
838 echo change >subdir/two.c &&
839 git add -p "*.c" <<-\EOF &&
844 cat >expect <<-\EOF &&
848 git diff --cached --name-only >actual &&
849 test_cmp expect actual
852 test_expect_success
'add -p handles relative paths' '
855 echo base >relpath.c &&
857 git commit -m relpath &&
859 echo change >relpath.c &&
861 git -C subdir add -p .. 2>error <<-\EOF &&
865 test_must_be_empty error &&
867 cat >expect <<-\EOF &&
870 git diff --cached --name-only >actual &&
871 test_cmp expect actual
874 test_expect_success
'add -p does not expand argument lists' '
877 echo content >not-changed &&
878 git add not-changed &&
879 git commit -m "add not-changed file" &&
882 GIT_TRACE=$(pwd)/trace.out git add -p . <<-\EOF &&
886 # we know that "file" must be mentioned since we actually
887 # update it, but we want to be sure that our "." pathspec
888 # was not expanded into the argument list of any command.
889 # So look only for "not-changed".
890 ! grep -E "^trace: (built-in|exec|run_command): .*not-changed" trace.out
893 test_expect_success
'hunk-editing handles custom comment char' '
895 echo change >>file &&
896 test_config core.commentChar "\$" &&
897 echo e | GIT_EDITOR=true git add -p &&
901 test_expect_success
'add -p works even with color.ui=always' '
903 echo change >>file &&
904 test_config color.ui always &&
905 echo y | git add -p &&
907 git diff --cached --name-only >actual &&
908 test_cmp expect actual
911 test_expect_success
'setup different kinds of dirty submodules' '
912 test_create_repo for-submodules &&
915 test_commit initial &&
916 test_create_repo dirty-head &&
921 cp -R dirty-head dirty-otherwise &&
922 cp -R dirty-head dirty-both-ways &&
923 git add dirty-head &&
924 git add dirty-otherwise dirty-both-ways &&
925 git commit -m initial &&
928 test_commit updated &&
929 cd ../dirty-both-ways &&
930 test_commit updated &&
931 echo dirty >>initial &&
933 cd ../dirty-otherwise &&
934 echo dirty >>initial &&
937 git -C for-submodules diff-files --name-only >actual &&
938 cat >expected <<-\EOF &&
942 test_cmp expected actual &&
943 git -C for-submodules diff-files --name-only --ignore-submodules=none >actual &&
944 cat >expected <<-\EOF &&
949 test_cmp expected actual &&
950 git -C for-submodules diff-files --name-only --ignore-submodules=dirty >actual &&
951 cat >expected <<-\EOF &&
955 test_cmp expected actual
958 test_expect_success
'status ignores dirty submodules (except HEAD)' '
959 git -C for-submodules add -i </dev/null >output &&
960 grep dirty-head output &&
961 grep dirty-both-ways output &&
962 ! grep dirty-otherwise output
965 test_expect_success
'handle submodules' '
966 echo 123 >>for-submodules/dirty-otherwise/initial.t &&
968 force_color git -C for-submodules add -p dirty-otherwise >output 2>&1 &&
969 grep "No changes" output &&
971 force_color git -C for-submodules add -p dirty-head >output 2>&1 <y &&
972 git -C for-submodules ls-files --stage dirty-head >actual &&
973 rev="$(git -C for-submodules/dirty-head rev-parse HEAD)" &&
977 test_expect_success
'set up pathological context' '
979 test_write_lines a a a a a a a a a a a >a &&
982 test_write_lines c b a a a a a a a b a a a a >a &&
983 test_write_lines a a a a a a a b a a a a >expected-1 &&
984 test_write_lines b a a a a a a a b a a a a >expected-2 &&
985 # check editing can cope with missing header and deleted context lines
986 # as well as changes to other lines
987 test_write_lines +b " a" >patch
990 test_expect_success
'add -p works with pathological context lines' '
994 git cat-file blob :a >actual &&
995 test_cmp expected-1 actual
998 test_expect_success
'add -p patch editing works with pathological context lines' '
1000 # n q q below is in case edit fails
1001 printf "%s\n" e y n q q |
1003 git cat-file blob :a >actual &&
1004 test_cmp expected-2 actual
1007 test_expect_success
'checkout -p works with pathological context lines' '
1008 test_write_lines a a a a a a >a &&
1010 test_write_lines a b a b a b a b a b a >a &&
1011 test_write_lines s n n y q | git checkout -p &&
1012 test_write_lines a b a b a a b a b a >expect &&
1016 # This should be called from a subshell as it sets a temporary editor
1018 write_script new-file-editor.sh
<<-\EOF &&
1019 sed /^#/d "$1" >patch &&
1020 sed /^+c/d patch >"$1"
1022 test_set_editor "$(pwd)/new-file-editor.sh" &&
1023 test_write_lines a b c d e f >new-file &&
1024 test_write_lines a b d e f >new-file-expect &&
1025 test_write_lines "@@ -0,0 +1,6 @@" +a +b +c +d +e +f >patch-expect
1028 test_expect_success 'add -N followed by add -p patch editing' '
1032 git add -N new-file &&
1033 test_write_lines e n q | git add -p &&
1034 git cat-file blob :new-file >actual &&
1035 test_cmp new-file-expect actual &&
1036 test_cmp patch-expect patch
1040 test_expect_success 'checkout -p patch editing of added file' '
1045 git commit -m "add new file" &&
1047 git commit -m "remove new file" &&
1048 test_write_lines e n q | git checkout -p HEAD^ &&
1049 test_cmp new-file-expect new-file &&
1050 test_cmp patch-expect patch
1054 test_expect_success 'show help from add--helper' '
1056 cat >expect <<-EOF &&
1058 <BOLD>*** Commands ***<RESET>
1059 1: <BOLD;BLUE>s<RESET>tatus 2: <BOLD;BLUE>u<RESET>pdate 3: <BOLD;BLUE>r<RESET>evert 4: <BOLD;BLUE>a<RESET>dd untracked
1060 5: <BOLD;BLUE>p<RESET>atch 6: <BOLD;BLUE>d<RESET>iff 7: <BOLD;BLUE>q<RESET>uit 8: <BOLD;BLUE>h<RESET>elp
1061 <BOLD;BLUE>What now<RESET>> <BOLD;RED>status - show paths with changes
<RESET
>
1062 <BOLD
;RED
>update
- add working tree state to the staged
set of changes
<RESET
>
1063 <BOLD
;RED
>revert
- revert staged
set of changes back to the HEAD version
<RESET
>
1064 <BOLD
;RED
>patch - pick hunks and update selectively
<RESET
>
1065 <BOLD
;RED
>diff - view
diff between HEAD and index
<RESET
>
1066 <BOLD
;RED
>add untracked
- add contents of untracked files to the staged
set of changes
<RESET
>
1067 <BOLD
>*** Commands
***<RESET
>
1068 1: <BOLD
;BLUE
>s
<RESET
>tatus
2: <BOLD
;BLUE
>u
<RESET
>pdate
3: <BOLD
;BLUE
>r
<RESET
>evert
4: <BOLD
;BLUE
>a
<RESET
>dd untracked
1069 5: <BOLD
;BLUE
>p
<RESET
>atch
6: <BOLD
;BLUE
>d
<RESET
>iff
7: <BOLD
;BLUE
>q
<RESET
>uit
8: <BOLD
;BLUE
>h
<RESET
>elp
1070 <BOLD
;BLUE
>What now
<RESET
>>$SP
1073 test_write_lines h | force_color git add
-i >actual.colored
&&
1074 test_decode_color
<actual.colored
>actual
&&
1075 test_cmp expect actual