3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='Various diff formatting options'
13 test_expect_success setup
'
15 GIT_AUTHOR_DATE="2006-06-26 00:00:00 +0000" &&
16 GIT_COMMITTER_DATE="2006-06-26 00:00:00 +0000" &&
17 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
21 for i in 1 2 3; do echo $i; done >file0 &&
22 for i in A B; do echo $i; done >dir/sub &&
24 git add file0 file2 dir/sub &&
25 git commit -m Initial &&
30 GIT_AUTHOR_DATE="2006-06-26 00:01:00 +0000" &&
31 GIT_COMMITTER_DATE="2006-06-26 00:01:00 +0000" &&
32 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
34 for i in 4 5 6; do echo $i; done >>file0 &&
35 for i in C D; do echo $i; done >>dir/sub &&
37 git update-index --remove file0 file2 dir/sub &&
38 git commit -m "Second${LF}${LF}This is the second commit." &&
40 GIT_AUTHOR_DATE="2006-06-26 00:02:00 +0000" &&
41 GIT_COMMITTER_DATE="2006-06-26 00:02:00 +0000" &&
42 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
44 for i in A B C; do echo $i; done >file1 &&
46 for i in E F; do echo $i; done >>dir/sub &&
47 git update-index dir/sub &&
48 git commit -m Third &&
50 GIT_AUTHOR_DATE="2006-06-26 00:03:00 +0000" &&
51 GIT_COMMITTER_DATE="2006-06-26 00:03:00 +0000" &&
52 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
55 for i in A B C; do echo $i; done >>file0 &&
56 for i in 1 2; do echo $i; done >>dir/sub &&
59 git update-index file0 dir/sub &&
62 GIT_AUTHOR_DATE="2006-06-26 00:04:00 +0000" &&
63 GIT_COMMITTER_DATE="2006-06-26 00:04:00 +0000" &&
64 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
66 git checkout master &&
67 git pull -s ours . side &&
69 GIT_AUTHOR_DATE="2006-06-26 00:05:00 +0000" &&
70 GIT_COMMITTER_DATE="2006-06-26 00:05:00 +0000" &&
71 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
73 for i in A B C; do echo $i; done >>file0 &&
74 for i in 1 2; do echo $i; done >>dir/sub &&
75 git update-index file0 dir/sub &&
78 cp dir/sub dir3/sub &&
79 test-chmtime +1 dir3/sub &&
81 git config log.showroot false &&
84 GIT_AUTHOR_DATE="2006-06-26 00:06:00 +0000" &&
85 GIT_COMMITTER_DATE="2006-06-26 00:06:00 +0000" &&
86 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
87 git checkout -b rearrange initial &&
88 for i in B A; do echo $i; done >dir/sub &&
90 git commit -m "Rearranged lines in dir/sub" &&
91 git checkout master &&
98 * [master
] Merge branch
'side'
99 ! [rearrange
] Rearranged lines
in dir
/sub
102 + [rearrange
] Rearranged lines
in dir
/sub
103 - [master
] Merge branch
'side'
107 +*++ [initial
] Initial
110 V
=$
(git version |
sed -e 's/^git version //' -e 's/\./\\./g')
114 '' |
'#'*) continue ;;
116 test=$
(echo "$cmd" |
sed -e 's|[/ ][/ ]*|_|g')
117 pfx
=$
(printf "%04d" $test_count)
118 expect
="$TEST_DIRECTORY/t4013/diff.$test"
119 actual
="$pfx-diff.$test"
121 test_expect_success
"git $cmd" '
125 sed -e "s/^\\(-*\\)$V\\(-*\\)\$/\\1g-i-t--v-e-r-s-i-o-n\2/" \
126 -e "s/^\\(.*mixed; boundary=\"-*\\)$V\\(-*\\)\"\$/\\1g-i-t--v-e-r-s-i-o-n\2\"/"
132 *format-patch* | *-stat*)
133 test_i18ncmp "$expect" "$actual";;
135 test_cmp "$expect" "$actual";;
139 # this is to help developing new tests.
140 cp "$actual" "$expect"
147 diff-tree
-r --abbrev initial
148 diff-tree
-r --abbrev=4 initial
149 diff-tree
--root initial
150 diff-tree
--root --abbrev initial
151 diff-tree
--root -r initial
152 diff-tree
--root -r --abbrev initial
153 diff-tree
--root -r --abbrev=4 initial
155 diff-tree
--root -p initial
156 diff-tree
--patch-with-stat initial
157 diff-tree
--root --patch-with-stat initial
158 diff-tree
--patch-with-raw initial
159 diff-tree
--root --patch-with-raw initial
161 diff-tree
--pretty initial
162 diff-tree
--pretty --root initial
163 diff-tree
--pretty -p initial
164 diff-tree
--pretty --stat initial
165 diff-tree
--pretty --summary initial
166 diff-tree
--pretty --stat --summary initial
167 diff-tree
--pretty --root -p initial
168 diff-tree
--pretty --root --stat initial
169 # improved by Timo's patch
170 diff-tree
--pretty --root --summary initial
171 # improved by Timo's patch
172 diff-tree
--pretty --root --summary -r initial
173 diff-tree
--pretty --root --stat --summary initial
174 diff-tree
--pretty --patch-with-stat initial
175 diff-tree
--pretty --root --patch-with-stat initial
176 diff-tree
--pretty --patch-with-raw initial
177 diff-tree
--pretty --root --patch-with-raw initial
179 diff-tree
--pretty=oneline initial
180 diff-tree
--pretty=oneline
--root initial
181 diff-tree
--pretty=oneline
-p initial
182 diff-tree
--pretty=oneline
--root -p initial
183 diff-tree
--pretty=oneline
--patch-with-stat initial
184 # improved by Timo's patch
185 diff-tree
--pretty=oneline
--root --patch-with-stat initial
186 diff-tree
--pretty=oneline
--patch-with-raw initial
187 diff-tree
--pretty=oneline
--root --patch-with-raw initial
189 diff-tree
--pretty side
190 diff-tree
--pretty -p side
191 diff-tree
--pretty --patch-with-stat side
195 diff-tree
-p -m master
197 diff-tree
-c --abbrev master
198 diff-tree
--cc master
199 # stat only should show the diffstat with the first parent
200 diff-tree
-c --stat master
201 diff-tree
--cc --stat master
202 diff-tree
-c --stat --summary master
203 diff-tree
--cc --stat --summary master
204 # stat summary should show the diffstat and summary with the first parent
205 diff-tree
-c --stat --summary side
206 diff-tree
--cc --stat --summary side
207 # improved by Timo's patch
208 diff-tree
--cc --patch-with-stat master
209 # improved by Timo's patch
210 diff-tree
--cc --patch-with-stat --summary master
212 diff-tree
--cc --patch-with-stat --summary side
218 log
--patch-with-stat master
219 log
--root --patch-with-stat master
220 log
--root --patch-with-stat --summary master
221 # improved by Timo's patch
222 log
--root -c --patch-with-stat --summary master
223 # improved by Timo's patch
224 log
--root --cc --patch-with-stat --summary master
225 log
-p --first-parent master
226 log
-m -p --first-parent master
231 log
-SF master
--max-count=0
232 log
-SF master
--max-count=1
233 log
-SF master
--max-count=2
236 log
-GF -p --pickaxe-all master
238 log
--decorate=full
--all
240 rev-list
--parents HEAD
241 rev-list
--children HEAD
244 whatchanged
-p master
245 whatchanged
--root master
246 whatchanged
--root -p master
247 whatchanged
--patch-with-stat master
248 whatchanged
--root --patch-with-stat master
249 whatchanged
--root --patch-with-stat --summary master
250 # improved by Timo's patch
251 whatchanged
--root -c --patch-with-stat --summary master
252 # improved by Timo's patch
253 whatchanged
--root --cc --patch-with-stat --summary master
254 whatchanged
-SF master
255 whatchanged
-SF -p master
257 log
--patch-with-stat master
-- dir
/
258 whatchanged
--patch-with-stat master
-- dir
/
259 log
--patch-with-stat --summary master
-- dir
/
260 whatchanged
--patch-with-stat --summary master
-- dir
/
268 show
--first-parent master
270 show
--stat --summary side
271 show
--patch-with-stat side
272 show
--patch-with-raw side
273 show
--patch-with-stat --summary side
275 format-patch
--stdout initial..side
276 format-patch
--stdout initial..master^
277 format-patch
--stdout initial..master
278 format-patch
--stdout --no-numbered initial..master
279 format-patch
--stdout --numbered initial..master
280 format-patch
--attach --stdout initial..side
281 format-patch
--attach --stdout --suffix=.
diff initial..side
282 format-patch
--attach --stdout initial..master^
283 format-patch
--attach --stdout initial..master
284 format-patch
--inline --stdout initial..side
285 format-patch
--inline --stdout initial..master^
286 format-patch
--inline --stdout --numbered-files initial..master
287 format-patch
--inline --stdout initial..master
288 format-patch
--inline --stdout --subject-prefix=TESTCASE initial..master
289 config format.subjectprefix DIFFERENT_PREFIX
290 format-patch
--inline --stdout initial..master^^
291 format-patch
--stdout --cover-letter -n initial..master^
293 diff --abbrev initial..side
294 diff -r initial..side
295 diff --stat initial..side
296 diff -r --stat initial..side
298 diff --patch-with-stat initial..side
299 diff --patch-with-raw initial..side
300 diff --patch-with-stat -r initial..side
301 diff --patch-with-raw -r initial..side
302 diff --name-status dir2 dir
303 diff --no-index --name-status dir2 dir
304 diff --no-index --name-status -- dir2 dir
305 diff --no-index dir dir3
306 diff master master^ side
307 diff --dirstat master~
1 master~
2
308 diff --dirstat initial rearrange
309 diff --dirstat-by-file initial rearrange
312 test_expect_success
'log -S requires an argument' '
313 test_must_fail git log -S
316 test_expect_success
'diff --cached on unborn branch' '
317 echo ref: refs/heads/unborn >.git/HEAD &&
318 git diff --cached >result &&
319 test_cmp "$TEST_DIRECTORY/t4013/diff.diff_--cached" result
322 test_expect_success
'diff --cached -- file on unborn branch' '
323 git diff --cached -- file0 >result &&
324 test_cmp "$TEST_DIRECTORY/t4013/diff.diff_--cached_--_file0" result
327 test_expect_success
'diff-tree --stdin with log formatting' '
328 cat >expect <<-\EOF &&
333 git rev-list master | git diff-tree --stdin --format=%s -s >actual &&
334 test_cmp expect actual