]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4013-diff-various.sh
checkout: describe_detached_head: remove ellipsis after committish
[thirdparty/git.git] / t / t4013-diff-various.sh
CommitLineData
3c2f75b5
JH
1#!/bin/sh
2#
3# Copyright (c) 2006 Junio C Hamano
4#
5
6test_description='Various diff formatting options'
7
8. ./test-lib.sh
9
a40d384c
JH
10LF='
11'
12
3c2f75b5
JH
13test_expect_success setup '
14
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 &&
18
19 mkdir dir &&
3cb56738 20 mkdir dir2 &&
3c2f75b5
JH
21 for i in 1 2 3; do echo $i; done >file0 &&
22 for i in A B; do echo $i; done >dir/sub &&
23 cat file0 >file2 &&
24 git add file0 file2 dir/sub &&
25 git commit -m Initial &&
26
27 git branch initial &&
28 git branch side &&
29
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 &&
33
34 for i in 4 5 6; do echo $i; done >>file0 &&
35 for i in C D; do echo $i; done >>dir/sub &&
36 rm -f file2 &&
37 git update-index --remove file0 file2 dir/sub &&
a40d384c 38 git commit -m "Second${LF}${LF}This is the second commit." &&
3c2f75b5
JH
39
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 &&
43
44 for i in A B C; do echo $i; done >file1 &&
45 git add file1 &&
46 for i in E F; do echo $i; done >>dir/sub &&
47 git update-index dir/sub &&
48 git commit -m Third &&
49
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 &&
53
54 git checkout side &&
55 for i in A B C; do echo $i; done >>file0 &&
56 for i in 1 2; do echo $i; done >>dir/sub &&
57 cat dir/sub >file3 &&
58 git add file3 &&
59 git update-index file0 dir/sub &&
60 git commit -m Side &&
61
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 &&
65
66 git checkout master &&
67 git pull -s ours . side &&
68
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 &&
72
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 &&
76
d61027b2
MS
77 mkdir dir3 &&
78 cp dir/sub dir3/sub &&
79 test-chmtime +1 dir3/sub &&
80
e0d10e1c 81 git config log.showroot false &&
8ff99e74 82 git commit --amend &&
204f01a2
JH
83
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 &&
89 git add dir/sub &&
90 git commit -m "Rearranged lines in dir/sub" &&
91 git checkout master &&
92
58aaced4
SB
93 GIT_AUTHOR_DATE="2006-06-26 00:06:00 +0000" &&
94 GIT_COMMITTER_DATE="2006-06-26 00:06:00 +0000" &&
95 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
96 git checkout -b mode initial &&
97 git update-index --chmod=+x file0 &&
98 git commit -m "update mode" &&
99 git checkout -f master &&
100
5404c116
MM
101 git config diff.renames false &&
102
3c2f75b5
JH
103 git show-branch
104'
105
106: <<\EOF
107! [initial] Initial
108 * [master] Merge branch 'side'
204f01a2
JH
109 ! [rearrange] Rearranged lines in dir/sub
110 ! [side] Side
111----
112 + [rearrange] Rearranged lines in dir/sub
113 - [master] Merge branch 'side'
114 * + [side] Side
115 * [master^] Third
116 * [master~2] Second
117+*++ [initial] Initial
3c2f75b5
JH
118EOF
119
4ff03347 120V=$(git version | sed -e 's/^git version //' -e 's/\./\\./g')
3c2f75b5
JH
121while read cmd
122do
123 case "$cmd" in
124 '' | '#'*) continue ;;
125 esac
4ff03347
EP
126 test=$(echo "$cmd" | sed -e 's|[/ ][/ ]*|_|g')
127 pfx=$(printf "%04d" $test_count)
bfdbee98 128 expect="$TEST_DIRECTORY/t4013/diff.$test"
3c2f75b5
JH
129 actual="$pfx-diff.$test"
130
131 test_expect_success "git $cmd" '
132 {
133 echo "\$ git $cmd"
a2cd709d 134 GIT_PRINT_SHA1_ELLIPSIS="yes" git $cmd |
6c7f4ceb 135 sed -e "s/^\\(-*\\)$V\\(-*\\)\$/\\1g-i-t--v-e-r-s-i-o-n\2/" \
33ee4cfb 136 -e "s/^\\(.*mixed; boundary=\"-*\\)$V\\(-*\\)\"\$/\\1g-i-t--v-e-r-s-i-o-n\2\"/"
3c2f75b5
JH
137 echo "\$"
138 } >"$actual" &&
139 if test -f "$expect"
140 then
6dd88832
JN
141 case $cmd in
142 *format-patch* | *-stat*)
143 test_i18ncmp "$expect" "$actual";;
144 *)
145 test_cmp "$expect" "$actual";;
146 esac &&
3c2f75b5
JH
147 rm -f "$actual"
148 else
149 # this is to help developing new tests.
150 cp "$actual" "$expect"
151 false
152 fi
153 '
154done <<\EOF
155diff-tree initial
156diff-tree -r initial
157diff-tree -r --abbrev initial
158diff-tree -r --abbrev=4 initial
159diff-tree --root initial
160diff-tree --root --abbrev initial
161diff-tree --root -r initial
162diff-tree --root -r --abbrev initial
163diff-tree --root -r --abbrev=4 initial
164diff-tree -p initial
165diff-tree --root -p initial
166diff-tree --patch-with-stat initial
167diff-tree --root --patch-with-stat initial
168diff-tree --patch-with-raw initial
169diff-tree --root --patch-with-raw initial
170
171diff-tree --pretty initial
172diff-tree --pretty --root initial
173diff-tree --pretty -p initial
174diff-tree --pretty --stat initial
175diff-tree --pretty --summary initial
176diff-tree --pretty --stat --summary initial
177diff-tree --pretty --root -p initial
178diff-tree --pretty --root --stat initial
026625e7
JH
179# improved by Timo's patch
180diff-tree --pretty --root --summary initial
181# improved by Timo's patch
182diff-tree --pretty --root --summary -r initial
3c2f75b5
JH
183diff-tree --pretty --root --stat --summary initial
184diff-tree --pretty --patch-with-stat initial
185diff-tree --pretty --root --patch-with-stat initial
186diff-tree --pretty --patch-with-raw initial
187diff-tree --pretty --root --patch-with-raw initial
188
189diff-tree --pretty=oneline initial
190diff-tree --pretty=oneline --root initial
191diff-tree --pretty=oneline -p initial
192diff-tree --pretty=oneline --root -p initial
193diff-tree --pretty=oneline --patch-with-stat initial
026625e7 194# improved by Timo's patch
3c2f75b5
JH
195diff-tree --pretty=oneline --root --patch-with-stat initial
196diff-tree --pretty=oneline --patch-with-raw initial
197diff-tree --pretty=oneline --root --patch-with-raw initial
198
199diff-tree --pretty side
200diff-tree --pretty -p side
201diff-tree --pretty --patch-with-stat side
202
58aaced4
SB
203diff-tree initial mode
204diff-tree --stat initial mode
205diff-tree --summary initial mode
206
3c2f75b5
JH
207diff-tree master
208diff-tree -p master
209diff-tree -p -m master
210diff-tree -c master
211diff-tree -c --abbrev master
212diff-tree --cc master
47979d5d
JH
213# stat only should show the diffstat with the first parent
214diff-tree -c --stat master
215diff-tree --cc --stat master
216diff-tree -c --stat --summary master
217diff-tree --cc --stat --summary master
218# stat summary should show the diffstat and summary with the first parent
219diff-tree -c --stat --summary side
220diff-tree --cc --stat --summary side
026625e7
JH
221# improved by Timo's patch
222diff-tree --cc --patch-with-stat master
223# improved by Timo's patch
47979d5d
JH
224diff-tree --cc --patch-with-stat --summary master
225# this is correct
226diff-tree --cc --patch-with-stat --summary side
3c2f75b5
JH
227
228log master
229log -p master
230log --root master
231log --root -p master
232log --patch-with-stat master
233log --root --patch-with-stat master
47979d5d 234log --root --patch-with-stat --summary master
026625e7 235# improved by Timo's patch
47979d5d 236log --root -c --patch-with-stat --summary master
026625e7 237# improved by Timo's patch
47979d5d 238log --root --cc --patch-with-stat --summary master
126f431a
JH
239log -p --first-parent master
240log -m -p --first-parent master
241log -m -p master
3c2f75b5 242log -SF master
dea007fb 243log -S F master
47979d5d 244log -SF -p master
251df09b
MM
245log -SF master --max-count=0
246log -SF master --max-count=1
247log -SF master --max-count=2
bf1dfc31
JH
248log -GF master
249log -GF -p master
250log -GF -p --pickaxe-all master
28fd76bd 251log --decorate --all
33e7018c 252log --decorate=full --all
3c2f75b5 253
fcbc6efc
TR
254rev-list --parents HEAD
255rev-list --children HEAD
3c2f75b5
JH
256
257whatchanged master
258whatchanged -p master
259whatchanged --root master
260whatchanged --root -p master
261whatchanged --patch-with-stat master
262whatchanged --root --patch-with-stat master
263whatchanged --root --patch-with-stat --summary master
026625e7 264# improved by Timo's patch
47979d5d 265whatchanged --root -c --patch-with-stat --summary master
026625e7 266# improved by Timo's patch
47979d5d 267whatchanged --root --cc --patch-with-stat --summary master
3c2f75b5 268whatchanged -SF master
47979d5d 269whatchanged -SF -p master
3c2f75b5
JH
270
271log --patch-with-stat master -- dir/
272whatchanged --patch-with-stat master -- dir/
47979d5d
JH
273log --patch-with-stat --summary master -- dir/
274whatchanged --patch-with-stat --summary master -- dir/
3c2f75b5
JH
275
276show initial
277show --root initial
278show side
279show master
b4490059 280show -c master
2bf65873
JH
281show -m master
282show --first-parent master
3c2f75b5
JH
283show --stat side
284show --stat --summary side
285show --patch-with-stat side
286show --patch-with-raw side
287show --patch-with-stat --summary side
288
d410e43b
JH
289format-patch --stdout initial..side
290format-patch --stdout initial..master^
291format-patch --stdout initial..master
a567fdcb
BG
292format-patch --stdout --no-numbered initial..master
293format-patch --stdout --numbered initial..master
d410e43b 294format-patch --attach --stdout initial..side
108dab28 295format-patch --attach --stdout --suffix=.diff initial..side
d410e43b
JH
296format-patch --attach --stdout initial..master^
297format-patch --attach --stdout initial..master
c112f689
JS
298format-patch --inline --stdout initial..side
299format-patch --inline --stdout initial..master^
747e2505 300format-patch --inline --stdout --numbered-files initial..master
a567fdcb 301format-patch --inline --stdout initial..master
171ddd91 302format-patch --inline --stdout --subject-prefix=TESTCASE initial..master
dbd21447
AR
303config format.subjectprefix DIFFERENT_PREFIX
304format-patch --inline --stdout initial..master^^
a5a27c79 305format-patch --stdout --cover-letter -n initial..master^
d410e43b 306
b319b02e
JH
307diff --abbrev initial..side
308diff -r initial..side
309diff --stat initial..side
310diff -r --stat initial..side
311diff initial..side
312diff --patch-with-stat initial..side
313diff --patch-with-raw initial..side
314diff --patch-with-stat -r initial..side
315diff --patch-with-raw -r initial..side
3cb56738 316diff --name-status dir2 dir
0569e9b8 317diff --no-index --name-status dir2 dir
e423ffd8 318diff --no-index --name-status -- dir2 dir
d61027b2 319diff --no-index dir dir3
b75271d9 320diff master master^ side
660e113c
JK
321# Can't use spaces...
322diff --line-prefix=abc master master^ side
f37bfb7a 323diff --dirstat master~1 master~2
204f01a2 324diff --dirstat initial rearrange
0133dab7 325diff --dirstat-by-file initial rearrange
43d1948b
JB
326# No-index --abbrev and --no-abbrev
327diff --raw initial
328diff --raw --abbrev=4 initial
329diff --raw --no-abbrev initial
330diff --no-index --raw dir2 dir
331diff --no-index --raw --abbrev=4 dir2 dir
332diff --no-index --raw --no-abbrev dir2 dir
3c2f75b5
JH
333EOF
334
dea007fb
MM
335test_expect_success 'log -S requires an argument' '
336 test_must_fail git log -S
337'
338
a2b7a3b3
NTND
339test_expect_success 'diff --cached on unborn branch' '
340 echo ref: refs/heads/unborn >.git/HEAD &&
341 git diff --cached >result &&
342 test_cmp "$TEST_DIRECTORY/t4013/diff.diff_--cached" result
343'
344
345test_expect_success 'diff --cached -- file on unborn branch' '
346 git diff --cached -- file0 >result &&
347 test_cmp "$TEST_DIRECTORY/t4013/diff.diff_--cached_--_file0" result
348'
660e113c
JK
349test_expect_success 'diff --line-prefix with spaces' '
350 git diff --line-prefix="| | | " --cached -- file0 >result &&
351 test_cmp "$TEST_DIRECTORY/t4013/diff.diff_--line-prefix_--cached_--_file0" result
352'
a2b7a3b3 353
d299e9e5
JK
354test_expect_success 'diff-tree --stdin with log formatting' '
355 cat >expect <<-\EOF &&
356 Side
357 Third
358 Second
359 EOF
360 git rev-list master | git diff-tree --stdin --format=%s -s >actual &&
361 test_cmp expect actual
362'
363
3c2f75b5 364test_done