Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com> |
| 4 | # |
| 5 | |
| 6 | # FIXME: Test the various index usages, -i and -o, test reflog, |
Wincent Colaiuta | 264474f | 2007-12-08 13:29:47 +0100 | [diff] [blame] | 7 | # signoff |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 8 | |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 9 | test_description='git commit' |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 10 | . ./test-lib.sh |
| 11 | |
| 12 | test_tick |
| 13 | |
| 14 | test_expect_success \ |
| 15 | "initial status" \ |
| 16 | "echo 'bongo bongo' >file && |
Ævar Arnfjörð Bjarmason | b3b298a | 2011-02-22 23:42:17 +0000 | [diff] [blame] | 17 | git add file" |
| 18 | |
Junio C Hamano | 32177ba | 2011-04-13 16:17:29 -0700 | [diff] [blame] | 19 | test_expect_success "Constructing initial commit" ' |
| 20 | git status >actual && |
| 21 | test_i18ngrep "Initial commit" actual |
| 22 | ' |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 23 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 24 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 25 | "fail initial amend" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 26 | "test_must_fail git commit --amend" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 27 | |
| 28 | test_expect_success \ |
| 29 | "initial commit" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 30 | "git commit -m initial" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 31 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 32 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 33 | "invalid options 1" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 34 | "test_must_fail git commit -m foo -m bar -F file" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 35 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 36 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 37 | "invalid options 2" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 38 | "test_must_fail git commit -C HEAD -m illegal" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 39 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 40 | test_expect_success \ |
Björn Steinbrink | 9d87442 | 2007-11-12 16:15:39 +0100 | [diff] [blame] | 41 | "using paths with -a" \ |
| 42 | "echo King of the bongo >file && |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 43 | test_must_fail git commit -m foo -a file" |
Björn Steinbrink | 9d87442 | 2007-11-12 16:15:39 +0100 | [diff] [blame] | 44 | |
Conrad Irwin | e41fcfe | 2011-05-06 23:00:00 -0700 | [diff] [blame] | 45 | test_expect_success PERL 'can use paths with --interactive' ' |
Jeff King | 587ac8c | 2011-05-09 16:53:00 -0700 | [diff] [blame] | 46 | echo bong-o-bong >file && |
| 47 | # 2: update, 1:st path, that is all, 7: quit |
| 48 | ( echo 2; echo 1; echo; echo 7 ) | |
Conrad Irwin | e41fcfe | 2011-05-06 23:00:00 -0700 | [diff] [blame] | 49 | git commit -m foo --interactive file && |
| 50 | git reset --hard HEAD^ |
Jeff King | 587ac8c | 2011-05-09 16:53:00 -0700 | [diff] [blame] | 51 | ' |
Björn Steinbrink | 9d87442 | 2007-11-12 16:15:39 +0100 | [diff] [blame] | 52 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 53 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 54 | "using invalid commit with -C" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 55 | "test_must_fail git commit -C bogus" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 56 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 57 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 58 | "testing nothing to commit" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 59 | "test_must_fail git commit -m initial" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 60 | |
| 61 | test_expect_success \ |
| 62 | "next commit" \ |
| 63 | "echo 'bongo bongo bongo' >file \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 64 | git commit -m next -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 65 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 66 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 67 | "commit message from non-existing file" \ |
| 68 | "echo 'more bongo: bongo bongo bongo bongo' >file && \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 69 | test_must_fail git commit -F gah -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 70 | |
| 71 | # Empty except stray tabs and spaces on a few lines. |
| 72 | sed -e 's/@$//' >msg <<EOF |
| 73 | @ |
| 74 | |
| 75 | @ |
| 76 | Signed-off-by: hula |
| 77 | EOF |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 78 | test_expect_success \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 79 | "empty commit message" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 80 | "test_must_fail git commit -F msg -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 81 | |
| 82 | test_expect_success \ |
| 83 | "commit message from file" \ |
| 84 | "echo 'this is the commit message, coming from a file' >msg && \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 85 | git commit -F msg -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 86 | |
| 87 | cat >editor <<\EOF |
| 88 | #!/bin/sh |
Bryan Donlan | f69e836 | 2008-05-04 01:37:59 -0400 | [diff] [blame] | 89 | sed -e "s/a file/an amend commit/g" < "$1" > "$1-" |
| 90 | mv "$1-" "$1" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 91 | EOF |
| 92 | chmod 755 editor |
| 93 | |
| 94 | test_expect_success \ |
| 95 | "amend commit" \ |
Jonathan Nieder | d33738d | 2009-11-11 17:56:07 -0600 | [diff] [blame] | 96 | "EDITOR=./editor git commit --amend" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 97 | |
Junio C Hamano | 41ac414 | 2008-02-01 01:50:53 -0800 | [diff] [blame] | 98 | test_expect_success \ |
Junio C Hamano | 6d4bbeb | 2007-08-01 18:14:41 -0700 | [diff] [blame] | 99 | "passing -m and -F" \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 100 | "echo 'enough with the bongos' >file && \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 101 | test_must_fail git commit -F msg -m amending ." |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 102 | |
| 103 | test_expect_success \ |
| 104 | "using message from other commit" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 105 | "git commit -C HEAD^ ." |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 106 | |
| 107 | cat >editor <<\EOF |
| 108 | #!/bin/sh |
Bryan Donlan | f69e836 | 2008-05-04 01:37:59 -0400 | [diff] [blame] | 109 | sed -e "s/amend/older/g" < "$1" > "$1-" |
| 110 | mv "$1-" "$1" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 111 | EOF |
| 112 | chmod 755 editor |
| 113 | |
| 114 | test_expect_success \ |
| 115 | "editing message from other commit" \ |
| 116 | "echo 'hula hula' >file && \ |
Jonathan Nieder | d33738d | 2009-11-11 17:56:07 -0600 | [diff] [blame] | 117 | EDITOR=./editor git commit -c HEAD^ -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 118 | |
| 119 | test_expect_success \ |
| 120 | "message from stdin" \ |
| 121 | "echo 'silly new contents' >file && \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 122 | echo commit message from stdin | git commit -F - -a" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 123 | |
| 124 | test_expect_success \ |
| 125 | "overriding author from command line" \ |
| 126 | "echo 'gak' >file && \ |
Jeff King | 49ff9a7 | 2010-01-13 12:39:51 -0500 | [diff] [blame] | 127 | git commit -m 'author' --author 'Rubber Duck <rduck@convoy.org>' -a >output 2>&1" |
| 128 | |
| 129 | test_expect_success \ |
| 130 | "commit --author output mentions author" \ |
| 131 | "grep Rubber.Duck output" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 132 | |
Jeff King | 1b19ccd | 2009-04-03 15:33:59 -0400 | [diff] [blame] | 133 | test_expect_success PERL \ |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 134 | "interactive add" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 135 | "echo 7 | git commit --interactive | grep 'What now'" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 136 | |
Conrad Irwin | 02a481f | 2011-05-10 12:12:31 -0700 | [diff] [blame] | 137 | test_expect_success PERL \ |
| 138 | "commit --interactive doesn't change index if editor aborts" \ |
| 139 | "echo zoo >file && |
| 140 | test_must_fail git diff --exit-code >diff1 && |
| 141 | (echo u ; echo '*' ; echo q) | |
| 142 | (EDITOR=: && export EDITOR && |
| 143 | test_must_fail git commit --interactive) && |
| 144 | git diff >diff2 && |
| 145 | test_cmp diff1 diff2" |
| 146 | |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 147 | test_expect_success \ |
| 148 | "showing committed revisions" \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 149 | "git rev-list HEAD >current" |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 150 | |
Adeodato Simó | 7eb5bbd | 2009-01-09 18:30:05 +0100 | [diff] [blame] | 151 | cat >editor <<\EOF |
| 152 | #!/bin/sh |
| 153 | sed -e "s/good/bad/g" < "$1" > "$1-" |
| 154 | mv "$1-" "$1" |
| 155 | EOF |
| 156 | chmod 755 editor |
| 157 | |
| 158 | cat >msg <<EOF |
| 159 | A good commit message. |
| 160 | EOF |
| 161 | |
| 162 | test_expect_success \ |
| 163 | 'editor not invoked if -F is given' ' |
| 164 | echo "moo" >file && |
Jonathan Nieder | d33738d | 2009-11-11 17:56:07 -0600 | [diff] [blame] | 165 | EDITOR=./editor git commit -a -F msg && |
Adeodato Simó | 7eb5bbd | 2009-01-09 18:30:05 +0100 | [diff] [blame] | 166 | git show -s --pretty=format:"%s" | grep -q good && |
| 167 | echo "quack" >file && |
Jonathan Nieder | d33738d | 2009-11-11 17:56:07 -0600 | [diff] [blame] | 168 | echo "Another good message." | EDITOR=./editor git commit -a -F - && |
Adeodato Simó | 7eb5bbd | 2009-01-09 18:30:05 +0100 | [diff] [blame] | 169 | git show -s --pretty=format:"%s" | grep -q good |
| 170 | ' |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 171 | # We could just check the head sha1, but checking each commit makes it |
| 172 | # easier to isolate bugs. |
| 173 | |
| 174 | cat >expected <<\EOF |
| 175 | 72c0dc9855b0c9dadcbfd5a31cab072e0cb774ca |
| 176 | 9b88fc14ce6b32e3d9ee021531a54f18a5cf38a2 |
| 177 | 3536bbb352c3a1ef9a420f5b4242d48578b92aa7 |
| 178 | d381ac431806e53f3dd7ac2f1ae0534f36d738b9 |
| 179 | 4fd44095ad6334f3ef72e4c5ec8ddf108174b54a |
| 180 | 402702b49136e7587daa9280e91e4bb7cb2179f7 |
| 181 | EOF |
| 182 | |
| 183 | test_expect_success \ |
Nanako Shiraishi | 47a528a | 2008-09-03 17:59:33 +0900 | [diff] [blame] | 184 | 'validate git rev-list output.' \ |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 185 | 'test_cmp expected current' |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 186 | |
Junio C Hamano | db33af0 | 2007-09-14 16:53:58 -0700 | [diff] [blame] | 187 | test_expect_success 'partial commit that involves removal (1)' ' |
Junio C Hamano | 80bffaf | 2007-09-12 16:04:22 -0700 | [diff] [blame] | 188 | |
| 189 | git rm --cached file && |
| 190 | mv file elif && |
| 191 | git add elif && |
| 192 | git commit -m "Partial: add elif" elif && |
| 193 | git diff-tree --name-status HEAD^ HEAD >current && |
| 194 | echo "A elif" >expected && |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 195 | test_cmp expected current |
Junio C Hamano | 80bffaf | 2007-09-12 16:04:22 -0700 | [diff] [blame] | 196 | |
| 197 | ' |
| 198 | |
Junio C Hamano | db33af0 | 2007-09-14 16:53:58 -0700 | [diff] [blame] | 199 | test_expect_success 'partial commit that involves removal (2)' ' |
Junio C Hamano | 80bffaf | 2007-09-12 16:04:22 -0700 | [diff] [blame] | 200 | |
| 201 | git commit -m "Partial: remove file" file && |
| 202 | git diff-tree --name-status HEAD^ HEAD >current && |
| 203 | echo "D file" >expected && |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 204 | test_cmp expected current |
Junio C Hamano | 80bffaf | 2007-09-12 16:04:22 -0700 | [diff] [blame] | 205 | |
| 206 | ' |
| 207 | |
Junio C Hamano | db33af0 | 2007-09-14 16:53:58 -0700 | [diff] [blame] | 208 | test_expect_success 'partial commit that involves removal (3)' ' |
| 209 | |
| 210 | git rm --cached elif && |
| 211 | echo elif >elif && |
| 212 | git commit -m "Partial: modify elif" elif && |
| 213 | git diff-tree --name-status HEAD^ HEAD >current && |
| 214 | echo "M elif" >expected && |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 215 | test_cmp expected current |
Junio C Hamano | db33af0 | 2007-09-14 16:53:58 -0700 | [diff] [blame] | 216 | |
| 217 | ' |
| 218 | |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 219 | author="The Real Author <someguy@his.email.org>" |
| 220 | test_expect_success 'amend commit to fix author' ' |
| 221 | |
| 222 | oldtick=$GIT_AUTHOR_DATE && |
| 223 | test_tick && |
| 224 | git reset --hard && |
| 225 | git cat-file -p HEAD | |
| 226 | sed -e "s/author.*/author $author $oldtick/" \ |
| 227 | -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \ |
| 228 | expected && |
| 229 | git commit --amend --author="$author" && |
| 230 | git cat-file -p HEAD > current && |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 231 | test_cmp expected current |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 232 | |
| 233 | ' |
| 234 | |
Miklos Vajna | 02b47cd | 2009-12-02 23:16:18 +0100 | [diff] [blame] | 235 | test_expect_success 'amend commit to fix date' ' |
| 236 | |
| 237 | test_tick && |
| 238 | newtick=$GIT_AUTHOR_DATE && |
| 239 | git reset --hard && |
| 240 | git cat-file -p HEAD | |
| 241 | sed -e "s/author.*/author $author $newtick/" \ |
| 242 | -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \ |
| 243 | expected && |
| 244 | git commit --amend --date="$newtick" && |
| 245 | git cat-file -p HEAD > current && |
| 246 | test_cmp expected current |
| 247 | |
| 248 | ' |
| 249 | |
Jeff King | 4579bb4 | 2010-12-13 12:02:25 -0500 | [diff] [blame] | 250 | test_expect_success 'commit complains about bogus date' ' |
| 251 | test_must_fail git commit --amend --date=10.11.2010 |
| 252 | ' |
| 253 | |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 254 | test_expect_success 'sign off (1)' ' |
| 255 | |
| 256 | echo 1 >positive && |
| 257 | git add positive && |
| 258 | git commit -s -m "thank you" && |
| 259 | git cat-file commit HEAD | sed -e "1,/^\$/d" >actual && |
| 260 | ( |
| 261 | echo thank you |
| 262 | echo |
| 263 | git var GIT_COMMITTER_IDENT | |
| 264 | sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /" |
| 265 | ) >expected && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 266 | test_cmp expected actual |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 267 | |
| 268 | ' |
| 269 | |
| 270 | test_expect_success 'sign off (2)' ' |
| 271 | |
| 272 | echo 2 >positive && |
| 273 | git add positive && |
| 274 | existing="Signed-off-by: Watch This <watchthis@example.com>" && |
| 275 | git commit -s -m "thank you |
| 276 | |
| 277 | $existing" && |
| 278 | git cat-file commit HEAD | sed -e "1,/^\$/d" >actual && |
| 279 | ( |
| 280 | echo thank you |
| 281 | echo |
| 282 | echo $existing |
| 283 | git var GIT_COMMITTER_IDENT | |
| 284 | sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /" |
| 285 | ) >expected && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 286 | test_cmp expected actual |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 287 | |
| 288 | ' |
| 289 | |
David Brown | c1e01b0 | 2009-10-28 10:13:44 -0700 | [diff] [blame] | 290 | test_expect_success 'signoff gap' ' |
| 291 | |
| 292 | echo 3 >positive && |
| 293 | git add positive && |
| 294 | alt="Alt-RFC-822-Header: Value" && |
| 295 | git commit -s -m "welcome |
| 296 | |
| 297 | $alt" && |
| 298 | git cat-file commit HEAD | sed -e "1,/^\$/d" > actual && |
| 299 | ( |
| 300 | echo welcome |
| 301 | echo |
| 302 | echo $alt |
| 303 | git var GIT_COMMITTER_IDENT | |
| 304 | sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /" |
| 305 | ) >expected && |
| 306 | test_cmp expected actual |
| 307 | ' |
| 308 | |
| 309 | test_expect_success 'signoff gap 2' ' |
| 310 | |
| 311 | echo 4 >positive && |
| 312 | git add positive && |
| 313 | alt="fixed: 34" && |
| 314 | git commit -s -m "welcome |
| 315 | |
| 316 | We have now |
| 317 | $alt" && |
| 318 | git cat-file commit HEAD | sed -e "1,/^\$/d" > actual && |
| 319 | ( |
| 320 | echo welcome |
| 321 | echo |
| 322 | echo We have now |
| 323 | echo $alt |
| 324 | echo |
| 325 | git var GIT_COMMITTER_IDENT | |
| 326 | sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /" |
| 327 | ) >expected && |
| 328 | test_cmp expected actual |
| 329 | ' |
| 330 | |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 331 | test_expect_success 'multiple -m' ' |
| 332 | |
| 333 | >negative && |
| 334 | git add negative && |
| 335 | git commit -m "one" -m "two" -m "three" && |
| 336 | git cat-file commit HEAD | sed -e "1,/^\$/d" >actual && |
| 337 | ( |
| 338 | echo one |
| 339 | echo |
| 340 | echo two |
| 341 | echo |
| 342 | echo three |
| 343 | ) >expected && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 344 | test_cmp expected actual |
Junio C Hamano | 5aa5cd4 | 2007-11-10 01:49:34 -0800 | [diff] [blame] | 345 | |
| 346 | ' |
| 347 | |
Kristian Høgsberg | d63c2fd | 2007-11-02 11:33:06 -0400 | [diff] [blame] | 348 | author="The Real Author <someguy@his.email.org>" |
| 349 | test_expect_success 'amend commit to fix author' ' |
| 350 | |
| 351 | oldtick=$GIT_AUTHOR_DATE && |
| 352 | test_tick && |
| 353 | git reset --hard && |
| 354 | git cat-file -p HEAD | |
| 355 | sed -e "s/author.*/author $author $oldtick/" \ |
| 356 | -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \ |
| 357 | expected && |
| 358 | git commit --amend --author="$author" && |
| 359 | git cat-file -p HEAD > current && |
Miklos Vajna | 1e36868 | 2008-09-10 19:32:44 +0200 | [diff] [blame] | 360 | test_cmp expected current |
Kristian Høgsberg | d63c2fd | 2007-11-02 11:33:06 -0400 | [diff] [blame] | 361 | |
| 362 | ' |
Kristian Høgsberg | 1200993 | 2007-11-15 09:49:58 -0500 | [diff] [blame] | 363 | |
| 364 | test_expect_success 'git commit <file> with dirty index' ' |
| 365 | echo tacocat > elif && |
| 366 | echo tehlulz > chz && |
| 367 | git add chz && |
| 368 | git commit elif -m "tacocat is a palindrome" && |
| 369 | git show --stat | grep elif && |
| 370 | git diff --cached | grep chz |
| 371 | ' |
| 372 | |
Johannes Sixt | 13aba1e | 2007-12-03 08:24:50 +0100 | [diff] [blame] | 373 | test_expect_success 'same tree (single parent)' ' |
| 374 | |
Junio C Hamano | 31cbb5d | 2007-12-04 17:16:33 -0800 | [diff] [blame] | 375 | git reset --hard |
| 376 | |
Johannes Sixt | 13aba1e | 2007-12-03 08:24:50 +0100 | [diff] [blame] | 377 | if git commit -m empty |
| 378 | then |
| 379 | echo oops -- should have complained |
| 380 | false |
| 381 | else |
| 382 | : happy |
| 383 | fi |
| 384 | |
| 385 | ' |
| 386 | |
Junio C Hamano | 36863af | 2007-12-03 00:03:10 -0800 | [diff] [blame] | 387 | test_expect_success 'same tree (single parent) --allow-empty' ' |
| 388 | |
| 389 | git commit --allow-empty -m "forced empty" && |
| 390 | git cat-file commit HEAD | grep forced |
| 391 | |
| 392 | ' |
| 393 | |
Johannes Sixt | 13aba1e | 2007-12-03 08:24:50 +0100 | [diff] [blame] | 394 | test_expect_success 'same tree (merge and amend merge)' ' |
| 395 | |
| 396 | git checkout -b side HEAD^ && |
| 397 | echo zero >zero && |
| 398 | git add zero && |
| 399 | git commit -m "add zero" && |
| 400 | git checkout master && |
| 401 | |
| 402 | git merge -s ours side -m "empty ok" && |
| 403 | git diff HEAD^ HEAD >actual && |
| 404 | : >expected && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 405 | test_cmp expected actual && |
Johannes Sixt | 13aba1e | 2007-12-03 08:24:50 +0100 | [diff] [blame] | 406 | |
| 407 | git commit --amend -m "empty really ok" && |
| 408 | git diff HEAD^ HEAD >actual && |
| 409 | : >expected && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 410 | test_cmp expected actual |
Johannes Sixt | 13aba1e | 2007-12-03 08:24:50 +0100 | [diff] [blame] | 411 | |
| 412 | ' |
| 413 | |
Junio C Hamano | 1eb1e9e | 2007-12-14 11:57:22 -0800 | [diff] [blame] | 414 | test_expect_success 'amend using the message from another commit' ' |
| 415 | |
| 416 | git reset --hard && |
| 417 | test_tick && |
| 418 | git commit --allow-empty -m "old commit" && |
| 419 | old=$(git rev-parse --verify HEAD) && |
| 420 | test_tick && |
| 421 | git commit --allow-empty -m "new commit" && |
| 422 | new=$(git rev-parse --verify HEAD) && |
| 423 | test_tick && |
| 424 | git commit --allow-empty --amend -C "$old" && |
| 425 | git show --pretty="format:%ad %s" "$old" >expected && |
| 426 | git show --pretty="format:%ad %s" HEAD >actual && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 427 | test_cmp expected actual |
Junio C Hamano | 1eb1e9e | 2007-12-14 11:57:22 -0800 | [diff] [blame] | 428 | |
| 429 | ' |
| 430 | |
Junio C Hamano | 8a2f873 | 2008-02-03 00:00:09 -0800 | [diff] [blame] | 431 | test_expect_success 'amend using the message from a commit named with tag' ' |
| 432 | |
| 433 | git reset --hard && |
| 434 | test_tick && |
| 435 | git commit --allow-empty -m "old commit" && |
| 436 | old=$(git rev-parse --verify HEAD) && |
| 437 | git tag -a -m "tag on old" tagged-old HEAD && |
| 438 | test_tick && |
| 439 | git commit --allow-empty -m "new commit" && |
| 440 | new=$(git rev-parse --verify HEAD) && |
| 441 | test_tick && |
| 442 | git commit --allow-empty --amend -C tagged-old && |
| 443 | git show --pretty="format:%ad %s" "$old" >expected && |
| 444 | git show --pretty="format:%ad %s" HEAD >actual && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 445 | test_cmp expected actual |
Junio C Hamano | 8a2f873 | 2008-02-03 00:00:09 -0800 | [diff] [blame] | 446 | |
| 447 | ' |
| 448 | |
Thomas Rast | 6360d34 | 2010-03-12 18:04:34 +0100 | [diff] [blame] | 449 | test_expect_success 'amend can copy notes' ' |
| 450 | |
| 451 | git config notes.rewrite.amend true && |
| 452 | git config notes.rewriteRef "refs/notes/*" && |
| 453 | test_commit foo && |
| 454 | git notes add -m"a note" && |
| 455 | test_tick && |
| 456 | git commit --amend -m"new foo" && |
| 457 | test "$(git notes show)" = "a note" |
| 458 | |
| 459 | ' |
| 460 | |
Kristian Høgsberg | 12ace0b | 2007-07-31 15:37:30 -0400 | [diff] [blame] | 461 | test_done |