Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2005 Amos Waterland |
| 4 | # |
| 5 | |
Junio C Hamano | c2ca1d7 | 2009-08-04 22:31:59 -0500 | [diff] [blame] | 6 | test_description='git rebase assorted tests |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 7 | |
Junio C Hamano | c2ca1d7 | 2009-08-04 22:31:59 -0500 | [diff] [blame] | 8 | This test runs git rebase and checks that the author information is not lost |
| 9 | among other things. |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 10 | ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 11 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main |
Johannes Schindelin | 334afbc | 2020-11-18 23:44:19 +0000 | [diff] [blame] | 12 | export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME |
| 13 | |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 14 | . ./test-lib.sh |
| 15 | |
Jay Soffian | 43c2325 | 2010-06-16 03:12:40 -0400 | [diff] [blame] | 16 | GIT_AUTHOR_NAME=author@name |
| 17 | GIT_AUTHOR_EMAIL=bogus@email@address |
| 18 | export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 19 | |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 20 | test_expect_success 'prepare repository with topic branches' ' |
John Cai | 77ab58c | 2022-03-18 13:54:02 +0000 | [diff] [blame] | 21 | test_commit "Add A." A First First && |
Junio C Hamano | 840b3ca | 2008-11-10 16:15:49 -0800 | [diff] [blame] | 22 | git checkout -b force-3way && |
| 23 | echo Dummy >Y && |
| 24 | git update-index --add Y && |
| 25 | git commit -m "Add Y." && |
| 26 | git checkout -b filemove && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 27 | git reset --soft main && |
Junio C Hamano | 840b3ca | 2008-11-10 16:15:49 -0800 | [diff] [blame] | 28 | mkdir D && |
| 29 | git mv A D/A && |
| 30 | git commit -m "Move A." && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 31 | git checkout -b my-topic-branch main && |
John Cai | 77ab58c | 2022-03-18 13:54:02 +0000 | [diff] [blame] | 32 | test_commit "Add B." B Second Second && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 33 | git checkout -f main && |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 34 | echo Third >>A && |
| 35 | git update-index A && |
| 36 | git commit -m "Modify A." && |
| 37 | git checkout -b side my-topic-branch && |
| 38 | echo Side >>C && |
| 39 | git add C && |
| 40 | git commit -m "Add C" && |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 41 | git checkout -f my-topic-branch && |
| 42 | git tag topic |
Johannes Sixt | 1308c17 | 2007-07-04 22:09:10 +0200 | [diff] [blame] | 43 | ' |
| 44 | |
Nguyễn Thái Ngọc Duy | 7a7eb51 | 2009-05-24 01:31:02 +1000 | [diff] [blame] | 45 | test_expect_success 'rebase on dirty worktree' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 46 | echo dirty >>A && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 47 | test_must_fail git rebase main |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 48 | ' |
Nguyễn Thái Ngọc Duy | 7a7eb51 | 2009-05-24 01:31:02 +1000 | [diff] [blame] | 49 | |
| 50 | test_expect_success 'rebase on dirty cache' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 51 | git add A && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 52 | test_must_fail git rebase main |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 53 | ' |
Nguyễn Thái Ngọc Duy | 7a7eb51 | 2009-05-24 01:31:02 +1000 | [diff] [blame] | 54 | |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 55 | test_expect_success 'rebase against main' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 56 | git reset --hard HEAD && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 57 | git rebase main |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 58 | ' |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 59 | |
Johannes Schindelin | cbd29ea | 2019-03-03 09:11:55 -0800 | [diff] [blame] | 60 | test_expect_success 'rebase sets ORIG_HEAD to pre-rebase state' ' |
Johannes Schindelin | c2d9629 | 2019-03-03 09:11:54 -0800 | [diff] [blame] | 61 | git checkout -b orig-head topic && |
| 62 | pre="$(git rev-parse --verify HEAD)" && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 63 | git rebase main && |
Johannes Schindelin | c2d9629 | 2019-03-03 09:11:54 -0800 | [diff] [blame] | 64 | test_cmp_rev "$pre" ORIG_HEAD && |
Denton Liu | 2c9e125 | 2019-11-12 15:07:45 -0800 | [diff] [blame] | 65 | test_cmp_rev ! "$pre" HEAD |
Johannes Schindelin | c2d9629 | 2019-03-03 09:11:54 -0800 | [diff] [blame] | 66 | ' |
| 67 | |
Ramkumar Ramachandra | 2e6e276 | 2013-06-14 18:47:52 +0530 | [diff] [blame] | 68 | test_expect_success 'rebase, with <onto> and <upstream> specified as :/quuxery' ' |
Ramkumar Ramachandra | 6567dc0 | 2013-06-14 18:47:50 +0530 | [diff] [blame] | 69 | test_when_finished "git branch -D torebase" && |
| 70 | git checkout -b torebase my-topic-branch^ && |
| 71 | upstream=$(git rev-parse ":/Add B") && |
| 72 | onto=$(git rev-parse ":/Add A") && |
| 73 | git rebase --onto $onto $upstream && |
| 74 | git reset --hard my-topic-branch^ && |
| 75 | git rebase --onto ":/Add A" ":/Add B" && |
| 76 | git checkout my-topic-branch |
| 77 | ' |
| 78 | |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 79 | test_expect_success 'the rebase operation should not have destroyed author information' ' |
| 80 | ! (git log | grep "Author:" | grep "<>") |
| 81 | ' |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 82 | |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 83 | test_expect_success 'the rebase operation should not have destroyed author information (2)' " |
| 84 | git log -1 | |
| 85 | grep 'Author: $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>' |
| 86 | " |
Jay Soffian | 43c2325 | 2010-06-16 03:12:40 -0400 | [diff] [blame] | 87 | |
Johannes Sixt | 2559bff | 2009-03-01 11:20:03 +0100 | [diff] [blame] | 88 | test_expect_success 'HEAD was detached during rebase' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 89 | test $(git rev-parse HEAD@{1}) != $(git rev-parse my-topic-branch@{1}) |
Johannes Sixt | 2559bff | 2009-03-01 11:20:03 +0100 | [diff] [blame] | 90 | ' |
| 91 | |
Phil Hord | ea70980 | 2013-04-23 18:51:14 -0400 | [diff] [blame] | 92 | test_expect_success 'rebase from ambiguous branch name' ' |
| 93 | git checkout -b topic side && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 94 | git rebase main |
Phil Hord | ea70980 | 2013-04-23 18:51:14 -0400 | [diff] [blame] | 95 | ' |
| 96 | |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 97 | test_expect_success 'rebase off of the previous branch using "-"' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 98 | git checkout main && |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 99 | git checkout HEAD^ && |
| 100 | git rebase @{-1} >expect.messages && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 101 | git merge-base main HEAD >expect.forkpoint && |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 102 | |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 103 | git checkout main && |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 104 | git checkout HEAD^ && |
| 105 | git rebase - >actual.messages && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 106 | git merge-base main HEAD >actual.forkpoint && |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 107 | |
| 108 | test_cmp expect.forkpoint actual.forkpoint && |
| 109 | # the next one is dubious---we may want to say "-", |
| 110 | # instead of @{-1}, in the message |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 111 | test_cmp expect.messages actual.messages |
Brian Gesiak | 4f40740 | 2014-03-19 20:02:15 +0900 | [diff] [blame] | 112 | ' |
| 113 | |
Johannes Schindelin | ece7b74 | 2007-09-17 01:24:57 +0100 | [diff] [blame] | 114 | test_expect_success 'rebase a single mode change' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 115 | git checkout main && |
Martin von Zweigbergk | 3f21398 | 2013-06-06 23:11:41 -0700 | [diff] [blame] | 116 | git branch -D topic && |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 117 | echo 1 >X && |
| 118 | git add X && |
| 119 | test_tick && |
| 120 | git commit -m prepare && |
| 121 | git checkout -b modechange HEAD^ && |
| 122 | echo 1 >X && |
| 123 | git add X && |
| 124 | test_chmod +x A && |
| 125 | test_tick && |
| 126 | git commit -m modechange && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 127 | GIT_TRACE=1 git rebase main |
Johannes Schindelin | ece7b74 | 2007-09-17 01:24:57 +0100 | [diff] [blame] | 128 | ' |
| 129 | |
Junio C Hamano | 840b3ca | 2008-11-10 16:15:49 -0800 | [diff] [blame] | 130 | test_expect_success 'rebase is not broken by diff.renames' ' |
Yann Droneaud | 55adef0 | 2013-03-24 22:06:03 +0100 | [diff] [blame] | 131 | test_config diff.renames copies && |
Junio C Hamano | 840b3ca | 2008-11-10 16:15:49 -0800 | [diff] [blame] | 132 | git checkout filemove && |
| 133 | GIT_TRACE=1 git rebase force-3way |
| 134 | ' |
| 135 | |
| 136 | test_expect_success 'setup: recover' ' |
| 137 | test_might_fail git rebase --abort && |
| 138 | git reset --hard && |
| 139 | git checkout modechange |
| 140 | ' |
| 141 | |
Johannes Schindelin | 3ec7371 | 2009-02-08 21:40:42 -0800 | [diff] [blame] | 142 | test_expect_success 'Show verbose error when HEAD could not be detached' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 143 | >B && |
Eric Sunshine | df126ca | 2020-02-23 05:14:06 -0500 | [diff] [blame] | 144 | test_when_finished "rm -f B" && |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 145 | test_must_fail git rebase topic 2>output.err >output.out && |
Junio C Hamano | 6789275 | 2023-10-31 14:23:30 +0900 | [diff] [blame] | 146 | test_grep "The following untracked working tree files would be overwritten by checkout:" output.err && |
| 147 | test_grep B output.err |
Johannes Schindelin | 3ec7371 | 2009-02-08 21:40:42 -0800 | [diff] [blame] | 148 | ' |
Jonathan Nieder | bffd750 | 2010-05-31 17:51:32 -0500 | [diff] [blame] | 149 | |
Martin von Zweigbergk | 15a147e | 2011-02-09 20:54:02 -0500 | [diff] [blame] | 150 | test_expect_success 'fail when upstream arg is missing and not on branch' ' |
| 151 | git checkout topic && |
Carlos Martín Nieto | 3c02396 | 2012-03-04 05:41:26 +0100 | [diff] [blame] | 152 | test_must_fail git rebase |
Martin von Zweigbergk | 15a147e | 2011-02-09 20:54:02 -0500 | [diff] [blame] | 153 | ' |
| 154 | |
| 155 | test_expect_success 'fail when upstream arg is missing and not configured' ' |
| 156 | git checkout -b no-config topic && |
Carlos Martín Nieto | 3c02396 | 2012-03-04 05:41:26 +0100 | [diff] [blame] | 157 | test_must_fail git rebase |
Martin von Zweigbergk | 15a147e | 2011-02-09 20:54:02 -0500 | [diff] [blame] | 158 | ' |
| 159 | |
Denton Liu | cae0bc0 | 2019-12-04 13:25:11 -0800 | [diff] [blame] | 160 | test_expect_success 'rebase works with format.useAutoBase' ' |
Denton Liu | 0c47e06 | 2019-12-04 13:24:50 -0800 | [diff] [blame] | 161 | test_config format.useAutoBase true && |
| 162 | git checkout topic && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 163 | git rebase main |
Denton Liu | 0c47e06 | 2019-12-04 13:24:50 -0800 | [diff] [blame] | 164 | ' |
| 165 | |
Elijah Newren | 93122c9 | 2020-02-15 21:36:29 +0000 | [diff] [blame] | 166 | test_expect_success 'default to common base in @{upstream}s reflog if no upstream arg (--merge)' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 167 | git checkout -b default-base main && |
Martin von Zweigbergk | 15a147e | 2011-02-09 20:54:02 -0500 | [diff] [blame] | 168 | git checkout -b default topic && |
Ramkumar Ramachandra | 0238038 | 2011-12-08 18:40:17 +0530 | [diff] [blame] | 169 | git config branch.default.remote . && |
John Keeping | bb3f458 | 2014-01-09 19:47:34 +0000 | [diff] [blame] | 170 | git config branch.default.merge refs/heads/default-base && |
Elijah Newren | 93122c9 | 2020-02-15 21:36:29 +0000 | [diff] [blame] | 171 | git rebase --merge && |
| 172 | git rev-parse --verify default-base >expect && |
| 173 | git rev-parse default~1 >actual && |
| 174 | test_cmp expect actual && |
| 175 | git checkout default-base && |
| 176 | git reset --hard HEAD^ && |
| 177 | git checkout default && |
| 178 | git rebase --merge && |
| 179 | git rev-parse --verify default-base >expect && |
| 180 | git rev-parse default~1 >actual && |
| 181 | test_cmp expect actual |
| 182 | ' |
| 183 | |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 184 | test_expect_success 'default to common base in @{upstream}s reflog if no upstream arg (--apply)' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 185 | git checkout -B default-base main && |
Elijah Newren | 93122c9 | 2020-02-15 21:36:29 +0000 | [diff] [blame] | 186 | git checkout -B default topic && |
| 187 | git config branch.default.remote . && |
| 188 | git config branch.default.merge refs/heads/default-base && |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 189 | git rebase --apply && |
John Keeping | bb3f458 | 2014-01-09 19:47:34 +0000 | [diff] [blame] | 190 | git rev-parse --verify default-base >expect && |
| 191 | git rev-parse default~1 >actual && |
| 192 | test_cmp expect actual && |
| 193 | git checkout default-base && |
| 194 | git reset --hard HEAD^ && |
| 195 | git checkout default && |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 196 | git rebase --apply && |
John Keeping | bb3f458 | 2014-01-09 19:47:34 +0000 | [diff] [blame] | 197 | git rev-parse --verify default-base >expect && |
John Keeping | ad8261d | 2013-12-09 23:16:16 +0000 | [diff] [blame] | 198 | git rev-parse default~1 >actual && |
| 199 | test_cmp expect actual |
Jonathan Nieder | bffd750 | 2010-05-31 17:51:32 -0500 | [diff] [blame] | 200 | ' |
Johannes Schindelin | 3ec7371 | 2009-02-08 21:40:42 -0800 | [diff] [blame] | 201 | |
John Keeping | 1e0dacd | 2014-07-16 20:23:49 +0100 | [diff] [blame] | 202 | test_expect_success 'cherry-picked commits and fork-point work together' ' |
| 203 | git checkout default-base && |
| 204 | echo Amended >A && |
| 205 | git commit -a --no-edit --amend && |
| 206 | test_commit B B && |
| 207 | test_commit new_B B "New B" && |
| 208 | test_commit C C && |
| 209 | git checkout default && |
| 210 | git reset --hard default-base@{4} && |
| 211 | test_commit D D && |
| 212 | git cherry-pick -2 default-base^ && |
| 213 | test_commit final_B B "Final B" && |
| 214 | git rebase && |
| 215 | echo Amended >expect && |
Matthew DeVore | dcbaa0b | 2018-10-05 14:54:04 -0700 | [diff] [blame] | 216 | test_cmp expect A && |
John Keeping | 1e0dacd | 2014-07-16 20:23:49 +0100 | [diff] [blame] | 217 | echo "Final B" >expect && |
Matthew DeVore | dcbaa0b | 2018-10-05 14:54:04 -0700 | [diff] [blame] | 218 | test_cmp expect B && |
John Keeping | 1e0dacd | 2014-07-16 20:23:49 +0100 | [diff] [blame] | 219 | echo C >expect && |
Matthew DeVore | dcbaa0b | 2018-10-05 14:54:04 -0700 | [diff] [blame] | 220 | test_cmp expect C && |
John Keeping | 1e0dacd | 2014-07-16 20:23:49 +0100 | [diff] [blame] | 221 | echo D >expect && |
Matthew DeVore | dcbaa0b | 2018-10-05 14:54:04 -0700 | [diff] [blame] | 222 | test_cmp expect D |
John Keeping | 1e0dacd | 2014-07-16 20:23:49 +0100 | [diff] [blame] | 223 | ' |
| 224 | |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 225 | test_expect_success 'rebase --apply -q is quiet' ' |
Jonathan Nieder | e877a4c | 2010-07-23 12:05:24 -0500 | [diff] [blame] | 226 | git checkout -b quiet topic && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 227 | git rebase --apply -q main >output.out 2>&1 && |
Junio C Hamano | ca8d148 | 2013-06-09 11:29:20 -0700 | [diff] [blame] | 228 | test_must_be_empty output.out |
Stephen Boyd | 0e987a1 | 2009-06-16 15:33:01 -0700 | [diff] [blame] | 229 | ' |
| 230 | |
Elijah Newren | 55d2b6d | 2020-02-15 21:36:28 +0000 | [diff] [blame] | 231 | test_expect_success 'rebase --merge -q is quiet' ' |
| 232 | git checkout -B quiet topic && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 233 | git rebase --merge -q main >output.out 2>&1 && |
Elijah Newren | 55d2b6d | 2020-02-15 21:36:28 +0000 | [diff] [blame] | 234 | test_must_be_empty output.out |
| 235 | ' |
| 236 | |
Junio C Hamano | c2ca1d7 | 2009-08-04 22:31:59 -0500 | [diff] [blame] | 237 | test_expect_success 'Rebase a commit that sprinkles CRs in' ' |
| 238 | ( |
Eric Sunshine | 3ea6737 | 2018-07-01 20:23:58 -0400 | [diff] [blame] | 239 | echo "One" && |
| 240 | echo "TwoQ" && |
| 241 | echo "Three" && |
| 242 | echo "FQur" && |
Junio C Hamano | c2ca1d7 | 2009-08-04 22:31:59 -0500 | [diff] [blame] | 243 | echo "Five" |
| 244 | ) | q_to_cr >CR && |
| 245 | git add CR && |
| 246 | test_tick && |
| 247 | git commit -a -m "A file with a line with CR" && |
| 248 | git tag file-with-cr && |
| 249 | git checkout HEAD^0 && |
| 250 | git rebase --onto HEAD^^ HEAD^ && |
| 251 | git diff --exit-code file-with-cr:CR HEAD:CR |
| 252 | ' |
| 253 | |
Thomas Rast | eb2151b | 2010-03-12 18:04:33 +0100 | [diff] [blame] | 254 | test_expect_success 'rebase can copy notes' ' |
| 255 | git config notes.rewrite.rebase true && |
| 256 | git config notes.rewriteRef "refs/notes/*" && |
| 257 | test_commit n1 && |
| 258 | test_commit n2 && |
| 259 | test_commit n3 && |
| 260 | git notes add -m"a note" n3 && |
| 261 | git rebase --onto n1 n2 && |
| 262 | test "a note" = "$(git notes show HEAD)" |
| 263 | ' |
| 264 | |
| 265 | test_expect_success 'rebase -m can copy notes' ' |
| 266 | git reset --hard n3 && |
| 267 | git rebase -m --onto n1 n2 && |
| 268 | test "a note" = "$(git notes show HEAD)" |
| 269 | ' |
| 270 | |
Junio C Hamano | 2c733fb | 2012-02-02 13:41:43 -0800 | [diff] [blame] | 271 | test_expect_success 'rebase commit with an ancient timestamp' ' |
| 272 | git reset --hard && |
| 273 | |
| 274 | >old.one && git add old.one && test_tick && |
| 275 | git commit --date="@12345 +0400" -m "Old one" && |
| 276 | >old.two && git add old.two && test_tick && |
| 277 | git commit --date="@23456 +0500" -m "Old two" && |
| 278 | >old.three && git add old.three && test_tick && |
| 279 | git commit --date="@34567 +0600" -m "Old three" && |
| 280 | |
| 281 | git cat-file commit HEAD^^ >actual && |
| 282 | grep "author .* 12345 +0400$" actual && |
| 283 | git cat-file commit HEAD^ >actual && |
| 284 | grep "author .* 23456 +0500$" actual && |
| 285 | git cat-file commit HEAD >actual && |
| 286 | grep "author .* 34567 +0600$" actual && |
| 287 | |
| 288 | git rebase --onto HEAD^^ HEAD^ && |
| 289 | |
| 290 | git cat-file commit HEAD >actual && |
| 291 | grep "author .* 34567 +0600$" actual |
| 292 | ' |
| 293 | |
Eric Wong | ae3b2b0 | 2017-11-18 01:01:16 +0000 | [diff] [blame] | 294 | test_expect_success 'rebase with "From " line in commit message' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 295 | git checkout -b preserve-from main~1 && |
Eric Wong | ae3b2b0 | 2017-11-18 01:01:16 +0000 | [diff] [blame] | 296 | cat >From_.msg <<EOF && |
| 297 | Somebody embedded an mbox in a commit message |
| 298 | |
| 299 | This is from so-and-so: |
| 300 | |
| 301 | From a@b Mon Sep 17 00:00:00 2001 |
| 302 | From: John Doe <nobody@example.com> |
| 303 | Date: Sat, 11 Nov 2017 00:00:00 +0000 |
| 304 | Subject: not this message |
| 305 | |
| 306 | something |
| 307 | EOF |
| 308 | >From_ && |
| 309 | git add From_ && |
| 310 | git commit -F From_.msg && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 311 | git rebase main && |
Eric Wong | ae3b2b0 | 2017-11-18 01:01:16 +0000 | [diff] [blame] | 312 | git log -1 --pretty=format:%B >out && |
| 313 | test_cmp From_.msg out |
| 314 | ' |
| 315 | |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 316 | test_expect_success 'rebase --apply and --show-current-patch' ' |
Nguyễn Thái Ngọc Duy | 6633529 | 2018-02-11 16:43:27 +0700 | [diff] [blame] | 317 | test_create_repo conflict-apply && |
| 318 | ( |
| 319 | cd conflict-apply && |
| 320 | test_commit init && |
| 321 | echo one >>init.t && |
| 322 | git commit -a -m one && |
| 323 | echo two >>init.t && |
| 324 | git commit -a -m two && |
| 325 | git tag two && |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 326 | test_must_fail git rebase --apply -f --onto init HEAD^ && |
Nguyễn Thái Ngọc Duy | 6633529 | 2018-02-11 16:43:27 +0700 | [diff] [blame] | 327 | GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr && |
| 328 | grep "show.*$(git rev-parse two)" stderr |
| 329 | ) |
| 330 | ' |
| 331 | |
Elijah Newren | 10cdb9f | 2020-02-15 21:36:41 +0000 | [diff] [blame] | 332 | test_expect_success 'rebase --apply and .gitattributes' ' |
brian m. carlson | 2c65d90 | 2019-09-02 22:39:44 +0000 | [diff] [blame] | 333 | test_create_repo attributes && |
| 334 | ( |
| 335 | cd attributes && |
| 336 | test_commit init && |
| 337 | git config filter.test.clean "sed -e '\''s/smudged/clean/g'\''" && |
| 338 | git config filter.test.smudge "sed -e '\''s/clean/smudged/g'\''" && |
| 339 | |
| 340 | test_commit second && |
| 341 | git checkout -b test HEAD^ && |
| 342 | |
| 343 | echo "*.txt filter=test" >.gitattributes && |
| 344 | git add .gitattributes && |
| 345 | test_commit third && |
| 346 | |
| 347 | echo "This text is smudged." >a.txt && |
| 348 | git add a.txt && |
| 349 | test_commit fourth && |
| 350 | |
| 351 | git checkout -b removal HEAD^ && |
| 352 | git rm .gitattributes && |
| 353 | git add -u && |
| 354 | test_commit fifth && |
| 355 | git cherry-pick test && |
| 356 | |
| 357 | git checkout test && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 358 | git rebase main && |
brian m. carlson | 2c65d90 | 2019-09-02 22:39:44 +0000 | [diff] [blame] | 359 | grep "smudged" a.txt && |
| 360 | |
| 361 | git checkout removal && |
| 362 | git reset --hard && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 363 | git rebase main && |
brian m. carlson | 2c65d90 | 2019-09-02 22:39:44 +0000 | [diff] [blame] | 364 | grep "clean" a.txt |
| 365 | ) |
| 366 | ' |
| 367 | |
Nguyễn Thái Ngọc Duy | 6633529 | 2018-02-11 16:43:27 +0700 | [diff] [blame] | 368 | test_expect_success 'rebase--merge.sh and --show-current-patch' ' |
| 369 | test_create_repo conflict-merge && |
| 370 | ( |
| 371 | cd conflict-merge && |
| 372 | test_commit init && |
| 373 | echo one >>init.t && |
| 374 | git commit -a -m one && |
| 375 | echo two >>init.t && |
| 376 | git commit -a -m two && |
| 377 | git tag two && |
| 378 | test_must_fail git rebase --merge --onto init HEAD^ && |
| 379 | git rebase --show-current-patch >actual.patch && |
| 380 | GIT_TRACE=1 git rebase --show-current-patch >/dev/null 2>stderr && |
Nguyễn Thái Ngọc Duy | fbd7a23 | 2018-02-11 16:43:28 +0700 | [diff] [blame] | 381 | grep "show.*REBASE_HEAD" stderr && |
| 382 | test "$(git rev-parse REBASE_HEAD)" = "$(git rev-parse two)" |
Nguyễn Thái Ngọc Duy | 6633529 | 2018-02-11 16:43:27 +0700 | [diff] [blame] | 383 | ) |
| 384 | ' |
| 385 | |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 386 | test_expect_success 'switch to branch checked out here' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 387 | git checkout main && |
| 388 | git rebase main main |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 389 | ' |
| 390 | |
Rubén Justo | 279f42f | 2023-02-25 15:22:13 +0100 | [diff] [blame] | 391 | test_expect_success 'switch to branch checked out elsewhere fails' ' |
| 392 | test_when_finished " |
| 393 | git worktree remove wt1 && |
| 394 | git worktree remove wt2 && |
| 395 | git branch -d shared |
| 396 | " && |
| 397 | git worktree add wt1 -b shared && |
| 398 | git worktree add wt2 -f shared && |
| 399 | # we test in both worktrees to ensure that works |
| 400 | # as expected with "first" and "next" worktrees |
| 401 | test_must_fail git -C wt1 rebase shared shared && |
| 402 | test_must_fail git -C wt2 rebase shared shared |
| 403 | ' |
| 404 | |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 405 | test_expect_success 'switch to branch not checked out' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 406 | git checkout main && |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 407 | git branch other && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 408 | git rebase main other |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 409 | ' |
| 410 | |
John Cai | bdff97a | 2022-03-18 13:54:03 +0000 | [diff] [blame] | 411 | test_expect_success 'switch to non-branch detaches HEAD' ' |
| 412 | git checkout main && |
| 413 | old_main=$(git rev-parse HEAD) && |
| 414 | git rebase First Second^0 && |
| 415 | test_cmp_rev HEAD Second && |
| 416 | test_cmp_rev main $old_main && |
| 417 | test_must_fail git symbolic-ref HEAD |
| 418 | ' |
| 419 | |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 420 | test_expect_success 'refuse to switch to branch checked out elsewhere' ' |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 421 | git checkout main && |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 422 | git worktree add wt && |
Johannes Schindelin | d1c02d9 | 2020-11-18 23:44:25 +0000 | [diff] [blame] | 423 | test_must_fail git -C wt rebase main main 2>err && |
Junio C Hamano | a8e2394 | 2023-11-08 11:04:02 +0900 | [diff] [blame] | 424 | test_grep "already used by worktree at" err |
Eric Sunshine | b5cabb4 | 2020-02-23 05:14:07 -0500 | [diff] [blame] | 425 | ' |
| 426 | |
Elijah Newren | ff5b791 | 2022-01-26 01:43:45 +0000 | [diff] [blame] | 427 | test_expect_success 'rebase when inside worktree subdirectory' ' |
| 428 | git init main-wt && |
| 429 | ( |
| 430 | cd main-wt && |
| 431 | git commit --allow-empty -m "initial" && |
| 432 | mkdir -p foo/bar && |
| 433 | test_commit foo/bar/baz && |
| 434 | mkdir -p a/b && |
| 435 | test_commit a/b/c && |
| 436 | # create another branch for our other worktree |
| 437 | git branch other && |
| 438 | git worktree add ../other-wt other && |
| 439 | cd ../other-wt && |
| 440 | # create and cd into a subdirectory |
| 441 | mkdir -p random/dir && |
| 442 | cd random/dir && |
| 443 | # now do the rebase |
| 444 | git rebase --onto HEAD^^ HEAD^ # drops the HEAD^ commit |
| 445 | ) |
| 446 | ' |
| 447 | |
Amos Waterland | 294c695 | 2005-12-14 17:48:19 -0500 | [diff] [blame] | 448 | test_done |