@@ -232,17 +232,54 @@ test_expect_success 'double rename detection in status' '
232
232
)
233
233
'
234
234
235
- test_expect_success ' diff-files/diff-cached shows ita as new/ not-new files ' '
235
+ test_expect_success ' i-t-a files shown as new for "diff", "diff-files"; not-new for "diff --cached" ' '
236
236
git reset --hard &&
237
- echo new >new-ita &&
238
- git add -N new-ita &&
237
+ : >empty &&
238
+ content="foo" &&
239
+ echo "$content" >not-empty &&
240
+
241
+ hash_e=$(git hash-object empty) &&
242
+ hash_n=$(git hash-object not-empty) &&
243
+ hash_t=$(git hash-object -t tree /dev/null) &&
244
+
245
+ cat >expect.diff_p <<-EOF &&
246
+ diff --git a/empty b/empty
247
+ new file mode 100644
248
+ index 0000000..$(git rev-parse --short $hash_e)
249
+ diff --git a/not-empty b/not-empty
250
+ new file mode 100644
251
+ index 0000000..$(git rev-parse --short $hash_n)
252
+ --- /dev/null
253
+ +++ b/not-empty
254
+ @@ -0,0 +1 @@
255
+ +$content
256
+ EOF
257
+ cat >expect.diff_s <<-EOF &&
258
+ create mode 100644 empty
259
+ create mode 100644 not-empty
260
+ EOF
261
+ cat >expect.diff_a <<-EOF &&
262
+ :000000 100644 0000000 $(git rev-parse --short $hash_t) A$(printf "\t")empty
263
+ :000000 100644 0000000 $(git rev-parse --short $hash_t) A$(printf "\t")not-empty
264
+ EOF
265
+
266
+ git add -N empty not-empty &&
267
+
268
+ git diff >actual &&
269
+ test_cmp expect.diff_p actual &&
270
+
239
271
git diff --summary >actual &&
240
- echo " create mode 100644 new-ita" >expected &&
241
- test_cmp expected actual &&
242
- git diff --cached --summary >actual2 &&
243
- test_must_be_empty actual2
244
- '
272
+ test_cmp expect.diff_s actual &&
273
+
274
+ git diff-files -p >actual &&
275
+ test_cmp expect.diff_p actual &&
245
276
277
+ git diff-files --abbrev >actual &&
278
+ test_cmp expect.diff_a actual &&
279
+
280
+ git diff --cached >actual &&
281
+ test_must_be_empty actual
282
+ '
246
283
247
284
test_expect_success ' "diff HEAD" includes ita as new files' '
248
285
git reset --hard &&
0 commit comments