3 # Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
6 # FIXME: Test the various index usages, -i and -o, test reflog,
9 test_description='git commit'
16 "echo 'bongo bongo' >file &&
19 test_expect_success C_LOCALE_OUTPUT \
20 "Constructing initial commit" \
21 "git status | grep 'Initial commit'"
24 "fail initial amend" \
25 "test_must_fail git commit --amend"
29 "git commit -m initial"
33 "test_must_fail git commit -m foo -m bar -F file"
37 "test_must_fail git commit -C HEAD -m illegal"
40 "using paths with -a" \
41 "echo King of the bongo >file &&
42 test_must_fail git commit -m foo -a file"
44 test_expect_success PERL 'can use paths with --interactive' '
45 echo bong-o-bong >file &&
46 # 2: update, 1:st path, that is all, 7: quit
47 ( echo 2; echo 1; echo; echo 7 ) |
48 git commit -m foo --interactive file &&
49 git reset --hard HEAD^
53 "using invalid commit with -C" \
54 "test_must_fail git commit -C bogus"
57 "testing nothing to commit" \
58 "test_must_fail git commit -m initial"
62 "echo 'bongo bongo bongo' >file \
63 git commit -m next -a"
66 "commit message from non-existing file" \
67 "echo 'more bongo: bongo bongo bongo bongo' >file && \
68 test_must_fail git commit -F gah -a"
70 # Empty except stray tabs and spaces on a few lines.
71 sed -e 's/@$//' >msg <<EOF
78 "empty commit message" \
79 "test_must_fail git commit -F msg -a"
82 "commit message from file" \
83 "echo 'this is the commit message, coming from a file' >msg && \
88 sed -e "s/a file/an amend commit/g" < "$1" > "$1-"
95 "EDITOR=./editor git commit --amend"
99 "echo 'enough with the bongos' >file && \
100 test_must_fail git commit -F msg -m amending ."
102 test_expect_success \
103 "using message from other commit" \
104 "git commit -C HEAD^ ."
108 sed -e "s/amend/older/g" < "$1" > "$1-"
113 test_expect_success \
114 "editing message from other commit" \
115 "echo 'hula hula' >file && \
116 EDITOR=./editor git commit -c HEAD^ -a"
118 test_expect_success \
119 "message from stdin" \
120 "echo 'silly new contents' >file && \
121 echo commit message from stdin | git commit -F - -a"
123 test_expect_success \
124 "overriding author from command line" \
125 "echo 'gak' >file && \
126 git commit -m 'author' --author 'Rubber Duck <rduck@convoy.org>' -a >output 2>&1"
128 test_expect_success \
129 "commit --author output mentions author" \
130 "grep Rubber.Duck output"
132 test_expect_success PERL \
134 "echo 7 | git commit --interactive | grep 'What now'"
136 test_expect_success PERL \
137 "commit --interactive doesn't change index if editor aborts" \
139 test_must_fail git diff --exit-code >diff1 &&
140 (echo u ; echo '*' ; echo q) |
141 (EDITOR=: && export EDITOR &&
142 test_must_fail git commit --interactive) &&
144 test_cmp diff1 diff2"
146 test_expect_success \
147 "showing committed revisions" \
148 "git rev-list HEAD >current"
152 sed -e "s/good/bad/g" < "$1" > "$1-"
158 A good commit message.
161 test_expect_success \
162 'editor not invoked if -F is given' '
164 EDITOR=./editor git commit -a -F msg &&
165 git show -s --pretty=format:"%s" | grep -q good &&
166 echo "quack" >file &&
167 echo "Another good message." | EDITOR=./editor git commit -a -F - &&
168 git show -s --pretty=format:"%s" | grep -q good
170 # We could just check the head sha1, but checking each commit makes it
171 # easier to isolate bugs.
174 72c0dc9855b0c9dadcbfd5a31cab072e0cb774ca
175 9b88fc14ce6b32e3d9ee021531a54f18a5cf38a2
176 3536bbb352c3a1ef9a420f5b4242d48578b92aa7
177 d381ac431806e53f3dd7ac2f1ae0534f36d738b9
178 4fd44095ad6334f3ef72e4c5ec8ddf108174b54a
179 402702b49136e7587daa9280e91e4bb7cb2179f7
182 test_expect_success \
183 'validate git rev-list output.' \
184 'test_cmp expected current'
186 test_expect_success 'partial commit that involves removal (1)' '
188 git rm --cached file &&
191 git commit -m "Partial: add elif" elif &&
192 git diff-tree --name-status HEAD^ HEAD >current &&
193 echo "A elif" >expected &&
194 test_cmp expected current
198 test_expect_success 'partial commit that involves removal (2)' '
200 git commit -m "Partial: remove file" file &&
201 git diff-tree --name-status HEAD^ HEAD >current &&
202 echo "D file" >expected &&
203 test_cmp expected current
207 test_expect_success 'partial commit that involves removal (3)' '
209 git rm --cached elif &&
211 git commit -m "Partial: modify elif" elif &&
212 git diff-tree --name-status HEAD^ HEAD >current &&
213 echo "M elif" >expected &&
214 test_cmp expected current
218 author="The Real Author <someguy@his.email.org>"
219 test_expect_success 'amend commit to fix author' '
221 oldtick=$GIT_AUTHOR_DATE &&
224 git cat-file -p HEAD |
225 sed -e "s/author.*/author $author $oldtick/" \
226 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
228 git commit --amend --author="$author" &&
229 git cat-file -p HEAD > current &&
230 test_cmp expected current
234 test_expect_success 'amend commit to fix date' '
237 newtick=$GIT_AUTHOR_DATE &&
239 git cat-file -p HEAD |
240 sed -e "s/author.*/author $author $newtick/" \
241 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
243 git commit --amend --date="$newtick" &&
244 git cat-file -p HEAD > current &&
245 test_cmp expected current
249 test_expect_success 'commit complains about bogus date' '
250 test_must_fail git commit --amend --date=10.11.2010
253 test_expect_success 'sign off (1)' '
257 git commit -s -m "thank you" &&
258 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
262 git var GIT_COMMITTER_IDENT |
263 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
265 test_cmp expected actual
269 test_expect_success 'sign off (2)' '
273 existing="Signed-off-by: Watch This <watchthis@example.com>" &&
274 git commit -s -m "thank you
277 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
282 git var GIT_COMMITTER_IDENT |
283 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
285 test_cmp expected actual
289 test_expect_success 'signoff gap' '
293 alt="Alt-RFC-822-Header: Value" &&
294 git commit -s -m "welcome
297 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
302 git var GIT_COMMITTER_IDENT |
303 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
305 test_cmp expected actual
308 test_expect_success 'signoff gap 2' '
313 git commit -s -m "welcome
317 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
324 git var GIT_COMMITTER_IDENT |
325 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
327 test_cmp expected actual
330 test_expect_success 'multiple -m' '
334 git commit -m "one" -m "two" -m "three" &&
335 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
343 test_cmp expected actual
347 author="The Real Author <someguy@his.email.org>"
348 test_expect_success 'amend commit to fix author' '
350 oldtick=$GIT_AUTHOR_DATE &&
353 git cat-file -p HEAD |
354 sed -e "s/author.*/author $author $oldtick/" \
355 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
357 git commit --amend --author="$author" &&
358 git cat-file -p HEAD > current &&
359 test_cmp expected current
363 test_expect_success 'git commit <file> with dirty index' '
364 echo tacocat > elif &&
365 echo tehlulz > chz &&
367 git commit elif -m "tacocat is a palindrome" &&
368 git show --stat | grep elif &&
369 git diff --cached | grep chz
372 test_expect_success 'same tree (single parent)' '
376 if git commit -m empty
378 echo oops -- should have complained
386 test_expect_success 'same tree (single parent) --allow-empty' '
388 git commit --allow-empty -m "forced empty" &&
389 git cat-file commit HEAD | grep forced
393 test_expect_success 'same tree (merge and amend merge)' '
395 git checkout -b side HEAD^ &&
398 git commit -m "add zero" &&
399 git checkout master &&
401 git merge -s ours side -m "empty ok" &&
402 git diff HEAD^ HEAD >actual &&
404 test_cmp expected actual &&
406 git commit --amend -m "empty really ok" &&
407 git diff HEAD^ HEAD >actual &&
409 test_cmp expected actual
413 test_expect_success 'amend using the message from another commit' '
417 git commit --allow-empty -m "old commit" &&
418 old=$(git rev-parse --verify HEAD) &&
420 git commit --allow-empty -m "new commit" &&
421 new=$(git rev-parse --verify HEAD) &&
423 git commit --allow-empty --amend -C "$old" &&
424 git show --pretty="format:%ad %s" "$old" >expected &&
425 git show --pretty="format:%ad %s" HEAD >actual &&
426 test_cmp expected actual
430 test_expect_success 'amend using the message from a commit named with tag' '
434 git commit --allow-empty -m "old commit" &&
435 old=$(git rev-parse --verify HEAD) &&
436 git tag -a -m "tag on old" tagged-old HEAD &&
438 git commit --allow-empty -m "new commit" &&
439 new=$(git rev-parse --verify HEAD) &&
441 git commit --allow-empty --amend -C tagged-old &&
442 git show --pretty="format:%ad %s" "$old" >expected &&
443 git show --pretty="format:%ad %s" HEAD >actual &&
444 test_cmp expected actual
448 test_expect_success 'amend can copy notes' '
450 git config notes.rewrite.amend true &&
451 git config notes.rewriteRef "refs/notes/*" &&
453 git notes add -m"a note" &&
455 git commit --amend -m"new foo" &&
456 test "$(git notes show)" = "a note"