3 test_description
='restore --pathspec-from-file'
9 test_expect_success setup
'
16 git add fileA.t fileB.t fileC.t fileD.t &&
17 git commit -m "files 1" &&
23 git add fileA.t fileB.t fileC.t fileD.t &&
24 git commit -m "files 2" &&
29 restore_checkpoint
() {
30 git
reset --hard checkpoint
34 git status
--porcelain --untracked-files=no
-- fileA.t fileB.t fileC.t fileD.t
>actual
&&
35 test_cmp expect actual
38 test_expect_success
'--pathspec-from-file from stdin' '
41 echo fileA.t | git restore --pathspec-from-file=- --source=HEAD^1 &&
43 cat >expect <<-\EOF &&
49 test_expect_success
'--pathspec-from-file from file' '
53 git restore --pathspec-from-file=list --source=HEAD^1 &&
55 cat >expect <<-\EOF &&
61 test_expect_success
'NUL delimiters' '
64 printf "fileA.t\0fileB.t\0" | git restore --pathspec-from-file=- --pathspec-file-nul --source=HEAD^1 &&
66 cat >expect <<-\EOF &&
73 test_expect_success
'LF delimiters' '
76 printf "fileA.t\nfileB.t\n" | git restore --pathspec-from-file=- --source=HEAD^1 &&
78 cat >expect <<-\EOF &&
85 test_expect_success
'no trailing delimiter' '
88 printf "fileA.t\nfileB.t" | git restore --pathspec-from-file=- --source=HEAD^1 &&
90 cat >expect <<-\EOF &&
97 test_expect_success
'CRLF delimiters' '
100 printf "fileA.t\r\nfileB.t\r\n" | git restore --pathspec-from-file=- --source=HEAD^1 &&
102 cat >expect <<-\EOF &&
109 test_expect_success
'quotes' '
110 restore_checkpoint &&
112 printf "\"file\\101.t\"" | git restore --pathspec-from-file=- --source=HEAD^1 &&
114 cat >expect <<-\EOF &&
120 test_expect_success
'quotes not compatible with --pathspec-file-nul' '
121 restore_checkpoint &&
123 printf "\"file\\101.t\"" >list &&
124 test_must_fail git restore --pathspec-from-file=list --pathspec-file-nul --source=HEAD^1
127 test_expect_success
'only touches what was listed' '
128 restore_checkpoint &&
130 printf "fileB.t\nfileC.t\n" | git restore --pathspec-from-file=- --source=HEAD^1 &&
132 cat >expect <<-\EOF &&