repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix "git diff --stat" for interesting - but empty - file changes
[git.git]
/
t
/
t4049-diff-stat-count.sh
blob
7b3ef00533f7b2fc5f8cea7b9d3553365ac69d0c
1
#!/bin/sh
2
# Copyright (c) 2011, Google Inc.
3
4
test_description
=
'diff --stat-count'
5
. .
/
test-lib.sh
6
7
test_expect_success setup
'
8
>a &&
9
>b &&
10
>c &&
11
>d &&
12
git add a b c d &&
13
chmod +x c d &&
14
echo a >a &&
15
echo b >b &&
16
cat >expect <<-\EOF
17
a | 1 +
18
b | 1 +
19
...
20
4 files changed, 2 insertions(+)
21
EOF
22
git diff --stat --stat-count=2 >actual &&
23
test_i18ncmp expect actual
24
'
25
26
test_done