]>
Commit | Line | Data |
---|---|---|
1b1dce4b JS |
1 | #!/bin/sh |
2 | # | |
3 | # Copyright (c) 2006 Johannes E. Schindelin | |
4 | ||
5 | # SHORT DESCRIPTION | |
6 | # | |
7 | # This script makes it easy to fix up commits in the middle of a series, | |
8 | # and rearrange commits. | |
9 | # | |
10 | # The original idea comes from Eric W. Biederman, in | |
11 | # http://article.gmane.org/gmane.comp.version-control.git/22407 | |
572a7c52 | 12 | # |
80883bb3 MH |
13 | # The file containing rebase commands, comments, and empty lines. |
14 | # This file is created by "git rebase -i" then edited by the user. As | |
15 | # the lines are processed, they are removed from the front of this | |
6bb4e485 | 16 | # file and written to the tail of $done. |
431b7e78 | 17 | todo="$state_dir"/git-rebase-todo |
80883bb3 MH |
18 | |
19 | # The rebase command lines that have already been processed. A line | |
20 | # is moved here when it is first handled, before any associated user | |
21 | # actions. | |
431b7e78 | 22 | done="$state_dir"/done |
80883bb3 MH |
23 | |
24 | # The commit message that is planned to be used for any changes that | |
25 | # need to be committed following a user interaction. | |
431b7e78 | 26 | msg="$state_dir"/message |
80883bb3 MH |
27 | |
28 | # The file into which is accumulated the suggested commit message for | |
29 | # squash/fixup commands. When the first of a series of squash/fixups | |
30 | # is seen, the file is created and the commit message from the | |
31 | # previous commit and from the first squash/fixup commit are written | |
32 | # to it. The commit message for each subsequent squash/fixup commit | |
33 | # is appended to the file as it is processed. | |
34 | # | |
35 | # The first line of the file is of the form | |
6bb4e485 MZ |
36 | # # This is a combination of $count commits. |
37 | # where $count is the number of commits whose messages have been | |
80883bb3 MH |
38 | # written to the file so far (including the initial "pick" commit). |
39 | # Each time that a commit message is processed, this line is read and | |
40 | # updated. It is deleted just before the combined commit is made. | |
431b7e78 | 41 | squash_msg="$state_dir"/message-squash |
80883bb3 | 42 | |
a25eb139 MH |
43 | # If the current series of squash/fixups has not yet included a squash |
44 | # command, then this file exists and holds the commit message of the | |
45 | # original "pick" commit. (If the series ends without a "squash" | |
46 | # command, then this can be used as the commit message of the combined | |
47 | # commit without opening the editor.) | |
431b7e78 | 48 | fixup_msg="$state_dir"/message-fixup |
a25eb139 | 49 | |
6bb4e485 MZ |
50 | # $rewritten is the name of a directory containing files for each |
51 | # commit that is reachable by at least one merge base of $head and | |
52 | # $upstream. They are not necessarily rewritten, but their children | |
80883bb3 MH |
53 | # might be. This ensures that commits on merged, but otherwise |
54 | # unrelated side branches are left alone. (Think "X" in the man page's | |
55 | # example.) | |
431b7e78 | 56 | rewritten="$state_dir"/rewritten |
80883bb3 | 57 | |
431b7e78 | 58 | dropped="$state_dir"/dropped |
0aac0de4 MH |
59 | |
60 | # A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and | |
61 | # GIT_AUTHOR_DATE that will be used for the commit that is currently | |
62 | # being rebased. | |
431b7e78 | 63 | author_script="$state_dir"/author-script |
0aac0de4 | 64 | |
a4049ae7 MH |
65 | # When an "edit" rebase command is being processed, the SHA1 of the |
66 | # commit to be edited is recorded in this file. When "git rebase | |
67 | # --continue" is executed, if there are any staged changes then they | |
68 | # will be amended to the HEAD commit, but only provided the HEAD | |
69 | # commit is still the commit to be edited. When any other rebase | |
70 | # command is processed, this file is deleted. | |
431b7e78 | 71 | amend="$state_dir"/amend |
a4049ae7 | 72 | |
b079feed TR |
73 | # For the post-rewrite hook, we make a list of rewritten commits and |
74 | # their new sha1s. The rewritten-pending list keeps the sha1s of | |
75 | # commits that have been processed, but not committed yet, | |
76 | # e.g. because they are waiting for a 'squash' command. | |
431b7e78 MZ |
77 | rewritten_list="$state_dir"/rewritten-list |
78 | rewritten_pending="$state_dir"/rewritten-pending | |
6bb4e485 | 79 | |
89c7ae9c | 80 | GIT_CHERRY_PICK_HELP="$resolvemsg" |
804c7174 WC |
81 | export GIT_CHERRY_PICK_HELP |
82 | ||
180bad3d JK |
83 | comment_char=$(git config --get core.commentchar 2>/dev/null | cut -c1) |
84 | : ${comment_char:=#} | |
85 | ||
1b1dce4b | 86 | warn () { |
938791cd | 87 | printf '%s\n' "$*" >&2 |
1b1dce4b JS |
88 | } |
89 | ||
ee0a4afb MH |
90 | # Output the commit message for the specified commit. |
91 | commit_message () { | |
92 | git cat-file commit "$1" | sed "1,/^$/d" | |
93 | } | |
94 | ||
6bb4e485 | 95 | orig_reflog_action="$GIT_REFLOG_ACTION" |
1b1dce4b JS |
96 | |
97 | comment_for_reflog () { | |
6bb4e485 | 98 | case "$orig_reflog_action" in |
1b1dce4b JS |
99 | ''|rebase*) |
100 | GIT_REFLOG_ACTION="rebase -i ($1)" | |
101 | export GIT_REFLOG_ACTION | |
376ccb8c | 102 | ;; |
1b1dce4b JS |
103 | esac |
104 | } | |
105 | ||
4e673877 | 106 | last_count= |
1b1dce4b | 107 | mark_action_done () { |
6bb4e485 MZ |
108 | sed -e 1q < "$todo" >> "$done" |
109 | sed -e 1d < "$todo" >> "$todo".new | |
110 | mv -f "$todo".new "$todo" | |
180bad3d JK |
111 | new_count=$(git stripspace --strip-comments <"$done" | wc -l) |
112 | total=$(($new_count + $(git stripspace --strip-comments <"$todo" | wc -l))) | |
6bb4e485 | 113 | if test "$last_count" != "$new_count" |
4e673877 | 114 | then |
6bb4e485 MZ |
115 | last_count=$new_count |
116 | printf "Rebasing (%d/%d)\r" $new_count $total | |
117 | test -z "$verbose" || echo | |
4e673877 | 118 | fi |
1b1dce4b JS |
119 | } |
120 | ||
fcc5ef1c | 121 | append_todo_help () { |
180bad3d JK |
122 | git stripspace --comment-lines >>"$todo" <<\EOF |
123 | ||
124 | Commands: | |
125 | p, pick = use commit | |
126 | r, reword = use commit, but edit the commit message | |
127 | e, edit = use commit, but stop for amending | |
128 | s, squash = use commit, but meld into previous commit | |
129 | f, fixup = like "squash", but discard this commit's log message | |
130 | x, exec = run command (the rest of the line) using shell | |
131 | ||
132 | These lines can be re-ordered; they are executed from top to bottom. | |
133 | ||
134 | If you remove a line here THAT COMMIT WILL BE LOST. | |
fcc5ef1c AW |
135 | EOF |
136 | } | |
137 | ||
1b1dce4b | 138 | make_patch () { |
4fb1a19d JS |
139 | sha1_and_parents="$(git rev-list --parents -1 "$1")" |
140 | case "$sha1_and_parents" in | |
141 | ?*' '?*' '?*) | |
142 | git diff --cc $sha1_and_parents | |
143 | ;; | |
144 | ?*' '?*) | |
145 | git diff-tree -p "$1^!" | |
146 | ;; | |
147 | *) | |
148 | echo "Root commit" | |
149 | ;; | |
431b7e78 | 150 | esac > "$state_dir"/patch |
6bb4e485 MZ |
151 | test -f "$msg" || |
152 | commit_message "$1" > "$msg" | |
153 | test -f "$author_script" || | |
154 | get_author_ident_from_commit "$1" > "$author_script" | |
1b1dce4b JS |
155 | } |
156 | ||
157 | die_with_patch () { | |
431b7e78 | 158 | echo "$1" > "$state_dir"/stopped-sha |
1b1dce4b | 159 | make_patch "$1" |
ecfe72ff | 160 | git rerere |
1b1dce4b JS |
161 | die "$2" |
162 | } | |
163 | ||
0becb3e4 AW |
164 | exit_with_patch () { |
165 | echo "$1" > "$state_dir"/stopped-sha | |
166 | make_patch $1 | |
167 | git rev-parse --verify HEAD > "$amend" | |
168 | warn "You can amend the commit now, with" | |
169 | warn | |
170 | warn " git commit --amend" | |
171 | warn | |
172 | warn "Once you are satisfied with your changes, run" | |
173 | warn | |
174 | warn " git rebase --continue" | |
175 | warn | |
176 | exit $2 | |
177 | } | |
178 | ||
c54b7817 | 179 | die_abort () { |
431b7e78 | 180 | rm -rf "$state_dir" |
c54b7817 JS |
181 | die "$1" |
182 | } | |
183 | ||
376ccb8c | 184 | has_action () { |
180bad3d | 185 | test -n "$(git stripspace --strip-comments <"$1")" |
376ccb8c JS |
186 | } |
187 | ||
90e1818f NH |
188 | is_empty_commit() { |
189 | tree=$(git rev-parse -q --verify "$1"^{tree} 2>/dev/null || | |
190 | die "$1: not a commit that can be picked") | |
191 | ptree=$(git rev-parse -q --verify "$1"^^{tree} 2>/dev/null || | |
192 | ptree=4b825dc642cb6eb9a060e54bf8d69288fbee4904) | |
193 | test "$tree" = "$ptree" | |
194 | } | |
195 | ||
98697784 PH |
196 | is_merge_commit() |
197 | { | |
198 | git rev-parse --verify --quiet "$1"^2 >/dev/null 2>&1 | |
199 | } | |
200 | ||
7756ecff MH |
201 | # Run command with GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and |
202 | # GIT_AUTHOR_DATE exported from the current environment. | |
203 | do_with_author () { | |
76c9c0db JH |
204 | ( |
205 | export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_AUTHOR_DATE | |
206 | "$@" | |
207 | ) | |
7756ecff MH |
208 | } |
209 | ||
821881d8 PO |
210 | git_sequence_editor () { |
211 | if test -z "$GIT_SEQUENCE_EDITOR" | |
212 | then | |
213 | GIT_SEQUENCE_EDITOR="$(git config sequence.editor)" | |
214 | if [ -z "$GIT_SEQUENCE_EDITOR" ] | |
215 | then | |
216 | GIT_SEQUENCE_EDITOR="$(git var GIT_EDITOR)" || return $? | |
217 | fi | |
218 | fi | |
219 | ||
220 | eval "$GIT_SEQUENCE_EDITOR" '"$@"' | |
221 | } | |
222 | ||
1b1dce4b | 223 | pick_one () { |
8e75abfd | 224 | ff=--ff |
90e1818f | 225 | |
8e75abfd | 226 | case "$1" in -n) sha1=$2; ff= ;; *) sha1=$1 ;; esac |
6bb4e485 | 227 | case "$force_rebase" in '') ;; ?*) ff= ;; esac |
dfa49f33 | 228 | output git rev-parse --verify $sha1 || die "Invalid commit name: $sha1" |
90e1818f NH |
229 | |
230 | if is_empty_commit "$sha1" | |
231 | then | |
232 | empty_args="--allow-empty" | |
233 | fi | |
234 | ||
6bb4e485 | 235 | test -d "$rewritten" && |
f09c9b8c | 236 | pick_one_preserving_merges "$@" && return |
90e1818f | 237 | output git cherry-pick $empty_args $ff "$@" |
1b1dce4b JS |
238 | } |
239 | ||
f09c9b8c | 240 | pick_one_preserving_merges () { |
71d9451e TR |
241 | fast_forward=t |
242 | case "$1" in | |
243 | -n) | |
244 | fast_forward=f | |
245 | sha1=$2 | |
246 | ;; | |
247 | *) | |
248 | sha1=$1 | |
249 | ;; | |
250 | esac | |
f09c9b8c JS |
251 | sha1=$(git rev-parse $sha1) |
252 | ||
431b7e78 | 253 | if test -f "$state_dir"/current-commit |
f09c9b8c | 254 | then |
4c1360f4 | 255 | if test "$fast_forward" = t |
bb645071 | 256 | then |
41f556b9 | 257 | while read current_commit |
bb645071 | 258 | do |
6bb4e485 | 259 | git rev-parse HEAD > "$rewritten"/$current_commit |
431b7e78 MZ |
260 | done <"$state_dir"/current-commit |
261 | rm "$state_dir"/current-commit || | |
bb645071 SH |
262 | die "Cannot write current commit's replacement sha1" |
263 | fi | |
f09c9b8c JS |
264 | fi |
265 | ||
431b7e78 | 266 | echo $sha1 >> "$state_dir"/current-commit |
a96dc01e | 267 | |
f09c9b8c | 268 | # rewrite parents; if none were rewritten, we can fast-forward. |
f09c9b8c | 269 | new_parents= |
d911d146 TR |
270 | pend=" $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-)" |
271 | if test "$pend" = " " | |
272 | then | |
273 | pend=" root" | |
274 | fi | |
faae853c | 275 | while [ "$pend" != "" ] |
f09c9b8c | 276 | do |
faae853c SH |
277 | p=$(expr "$pend" : ' \([^ ]*\)') |
278 | pend="${pend# $p}" | |
279 | ||
6bb4e485 | 280 | if test -f "$rewritten"/$p |
f09c9b8c | 281 | then |
6bb4e485 | 282 | new_p=$(cat "$rewritten"/$p) |
80fe82e4 SH |
283 | |
284 | # If the todo reordered commits, and our parent is marked for | |
285 | # rewriting, but hasn't been gotten to yet, assume the user meant to | |
286 | # drop it on top of the current HEAD | |
287 | if test -z "$new_p" | |
288 | then | |
289 | new_p=$(git rev-parse HEAD) | |
290 | fi | |
291 | ||
f09c9b8c JS |
292 | test $p != $new_p && fast_forward=f |
293 | case "$new_parents" in | |
294 | *$new_p*) | |
295 | ;; # do nothing; that parent is already there | |
296 | *) | |
297 | new_parents="$new_parents $new_p" | |
376ccb8c | 298 | ;; |
f09c9b8c | 299 | esac |
1c5fa0a1 | 300 | else |
6bb4e485 | 301 | if test -f "$dropped"/$p |
faae853c SH |
302 | then |
303 | fast_forward=f | |
6bb4e485 | 304 | replacement="$(cat "$dropped"/$p)" |
d911d146 TR |
305 | test -z "$replacement" && replacement=root |
306 | pend=" $replacement$pend" | |
faae853c SH |
307 | else |
308 | new_parents="$new_parents $p" | |
309 | fi | |
f09c9b8c JS |
310 | fi |
311 | done | |
312 | case $fast_forward in | |
313 | t) | |
a75d7b54 | 314 | output warn "Fast-forward to $sha1" |
71d9451e | 315 | output git reset --hard $sha1 || |
a75d7b54 | 316 | die "Cannot fast-forward to $sha1" |
f09c9b8c JS |
317 | ;; |
318 | f) | |
376ccb8c | 319 | first_parent=$(expr "$new_parents" : ' \([^ ]*\)') |
a4f25e36 SH |
320 | |
321 | if [ "$1" != "-n" ] | |
322 | then | |
323 | # detach HEAD to current parent | |
324 | output git checkout $first_parent 2> /dev/null || | |
325 | die "Cannot move HEAD to $first_parent" | |
326 | fi | |
f09c9b8c | 327 | |
f09c9b8c | 328 | case "$new_parents" in |
376ccb8c | 329 | ' '*' '*) |
a4f25e36 SH |
330 | test "a$1" = a-n && die "Refusing to squash a merge: $sha1" |
331 | ||
f09c9b8c | 332 | # redo merge |
6bb4e485 MZ |
333 | author_script_content=$(get_author_ident_from_commit $sha1) |
334 | eval "$author_script_content" | |
335 | msg_content="$(commit_message $sha1)" | |
f91333d6 BS |
336 | # No point in merging the first parent, that's HEAD |
337 | new_parents=${new_parents# $first_parent} | |
7756ecff | 338 | if ! do_with_author output \ |
9fdc1cc8 | 339 | git merge --no-ff ${strategy:+-s $strategy} -m \ |
9765b6ab | 340 | "$msg_content" $new_parents |
f09c9b8c | 341 | then |
6bb4e485 | 342 | printf "%s\n" "$msg_content" > "$GIT_DIR"/MERGE_MSG |
f5b49ea6 | 343 | die_with_patch $sha1 "Error redoing merge $sha1" |
f09c9b8c | 344 | fi |
6bb4e485 | 345 | echo "$sha1 $(git rev-parse HEAD^0)" >> "$rewritten_list" |
f09c9b8c JS |
346 | ;; |
347 | *) | |
2a9c53e0 | 348 | output git cherry-pick "$@" || |
f09c9b8c | 349 | die_with_patch $sha1 "Could not pick $sha1" |
376ccb8c | 350 | ;; |
f09c9b8c | 351 | esac |
376ccb8c | 352 | ;; |
f09c9b8c JS |
353 | esac |
354 | } | |
355 | ||
6368f3f8 JS |
356 | nth_string () { |
357 | case "$1" in | |
358 | *1[0-9]|*[04-9]) echo "$1"th;; | |
359 | *1) echo "$1"st;; | |
360 | *2) echo "$1"nd;; | |
361 | *3) echo "$1"rd;; | |
362 | esac | |
363 | } | |
364 | ||
a25eb139 | 365 | update_squash_messages () { |
6bb4e485 MZ |
366 | if test -f "$squash_msg"; then |
367 | mv "$squash_msg" "$squash_msg".bak || exit | |
368 | count=$(($(sed -n \ | |
180bad3d | 369 | -e "1s/^. This is a combination of \(.*\) commits\./\1/p" \ |
6bb4e485 | 370 | -e "q" < "$squash_msg".bak)+1)) |
bde1a686 | 371 | { |
180bad3d | 372 | printf '%s\n' "$comment_char This is a combination of $count commits." |
bde1a686 MH |
373 | sed -e 1d -e '2,/^./{ |
374 | /^$/d | |
6bb4e485 MZ |
375 | }' <"$squash_msg".bak |
376 | } >"$squash_msg" | |
6368f3f8 | 377 | else |
6bb4e485 MZ |
378 | commit_message HEAD > "$fixup_msg" || die "Cannot write $fixup_msg" |
379 | count=2 | |
bde1a686 | 380 | { |
180bad3d JK |
381 | printf '%s\n' "$comment_char This is a combination of 2 commits." |
382 | printf '%s\n' "$comment_char The first commit's message is:" | |
bde1a686 | 383 | echo |
6bb4e485 MZ |
384 | cat "$fixup_msg" |
385 | } >"$squash_msg" | |
6368f3f8 | 386 | fi |
0205e72f MH |
387 | case $1 in |
388 | squash) | |
6bb4e485 | 389 | rm -f "$fixup_msg" |
0205e72f | 390 | echo |
180bad3d | 391 | printf '%s\n' "$comment_char This is the $(nth_string $count) commit message:" |
0205e72f | 392 | echo |
ee0a4afb | 393 | commit_message $2 |
0205e72f MH |
394 | ;; |
395 | fixup) | |
396 | echo | |
180bad3d | 397 | printf '%s\n' "$comment_char The $(nth_string $count) commit message will be skipped:" |
0205e72f | 398 | echo |
180bad3d JK |
399 | # Change the space after the comment character to TAB: |
400 | commit_message $2 | git stripspace --comment-lines | sed -e 's/ / /' | |
0205e72f | 401 | ;; |
6bb4e485 | 402 | esac >>"$squash_msg" |
6368f3f8 JS |
403 | } |
404 | ||
405 | peek_next_command () { | |
180bad3d | 406 | git stripspace --strip-comments <"$todo" | sed -n -e 's/ .*//p' -e q |
6368f3f8 JS |
407 | } |
408 | ||
6bdcd0d2 MH |
409 | # A squash/fixup has failed. Prepare the long version of the squash |
410 | # commit message, then die_with_patch. This code path requires the | |
411 | # user to edit the combined commit message for all commits that have | |
412 | # been squashed/fixedup so far. So also erase the old squash | |
413 | # messages, effectively causing the combined commit to be used as the | |
414 | # new basis for any further squash/fixups. Args: sha1 rest | |
415 | die_failed_squash() { | |
6bb4e485 MZ |
416 | mv "$squash_msg" "$msg" || exit |
417 | rm -f "$fixup_msg" | |
418 | cp "$msg" "$GIT_DIR"/MERGE_MSG || exit | |
6bdcd0d2 MH |
419 | warn |
420 | warn "Could not apply $1... $2" | |
421 | die_with_patch $1 "" | |
422 | } | |
423 | ||
b079feed | 424 | flush_rewritten_pending() { |
6bb4e485 | 425 | test -s "$rewritten_pending" || return |
b079feed | 426 | newsha1="$(git rev-parse HEAD^0)" |
6bb4e485 MZ |
427 | sed "s/$/ $newsha1/" < "$rewritten_pending" >> "$rewritten_list" |
428 | rm -f "$rewritten_pending" | |
b079feed TR |
429 | } |
430 | ||
431 | record_in_rewritten() { | |
432 | oldsha1="$(git rev-parse $1)" | |
6bb4e485 | 433 | echo "$oldsha1" >> "$rewritten_pending" |
b079feed TR |
434 | |
435 | case "$(peek_next_command)" in | |
41f556b9 | 436 | squash|s|fixup|f) |
b079feed | 437 | ;; |
41f556b9 | 438 | *) |
b079feed TR |
439 | flush_rewritten_pending |
440 | ;; | |
441 | esac | |
442 | } | |
443 | ||
df5df20c CW |
444 | do_pick () { |
445 | if test "$(git rev-parse HEAD)" = "$squash_onto" | |
446 | then | |
447 | # Set the correct commit message and author info on the | |
448 | # sentinel root before cherry-picking the original changes | |
449 | # without committing (-n). Finally, update the sentinel again | |
450 | # to include these changes. If the cherry-pick results in a | |
451 | # conflict, this means our behaviour is similar to a standard | |
452 | # failed cherry-pick during rebase, with a dirty index to | |
453 | # resolve before manually running git commit --amend then git | |
454 | # rebase --continue. | |
455 | git commit --allow-empty --allow-empty-message --amend \ | |
456 | --no-post-rewrite -n -q -C $1 && | |
457 | pick_one -n $1 && | |
458 | git commit --allow-empty --allow-empty-message \ | |
459 | --amend --no-post-rewrite -n -q -C $1 || | |
460 | die_with_patch $1 "Could not apply $1... $2" | |
461 | else | |
462 | pick_one $1 || | |
463 | die_with_patch $1 "Could not apply $1... $2" | |
464 | fi | |
465 | } | |
466 | ||
1b1dce4b | 467 | do_next () { |
6bb4e485 MZ |
468 | rm -f "$msg" "$author_script" "$amend" || exit |
469 | read -r command sha1 rest < "$todo" | |
1b1dce4b | 470 | case "$command" in |
180bad3d | 471 | "$comment_char"*|''|noop) |
1b1dce4b | 472 | mark_action_done |
1b1dce4b | 473 | ;; |
f8babc4d | 474 | pick|p) |
1b1dce4b JS |
475 | comment_for_reflog pick |
476 | ||
477 | mark_action_done | |
df5df20c | 478 | do_pick $sha1 "$rest" |
b079feed | 479 | record_in_rewritten $sha1 |
1b1dce4b | 480 | ;; |
6741aa6c BG |
481 | reword|r) |
482 | comment_for_reflog reword | |
483 | ||
484 | mark_action_done | |
df5df20c | 485 | do_pick $sha1 "$rest" |
0becb3e4 AW |
486 | git commit --amend --no-post-rewrite || { |
487 | warn "Could not amend commit after successfully picking $sha1... $rest" | |
488 | warn "This is most likely due to an empty commit message, or the pre-commit hook" | |
489 | warn "failed. If the pre-commit hook failed, you may need to resolve the issue before" | |
490 | warn "you are able to reword the commit." | |
491 | exit_with_patch $sha1 1 | |
492 | } | |
b079feed | 493 | record_in_rewritten $sha1 |
6741aa6c | 494 | ;; |
f8babc4d | 495 | edit|e) |
1b1dce4b JS |
496 | comment_for_reflog edit |
497 | ||
498 | mark_action_done | |
df5df20c | 499 | do_pick $sha1 "$rest" |
a8ccc204 | 500 | warn "Stopped at $sha1... $rest" |
0becb3e4 | 501 | exit_with_patch $sha1 0 |
1b1dce4b | 502 | ;; |
0205e72f MH |
503 | squash|s|fixup|f) |
504 | case "$command" in | |
505 | squash|s) | |
506 | squash_style=squash | |
507 | ;; | |
508 | fixup|f) | |
509 | squash_style=fixup | |
510 | ;; | |
511 | esac | |
512 | comment_for_reflog $squash_style | |
1b1dce4b | 513 | |
6bb4e485 | 514 | test -f "$done" && has_action "$done" || |
0205e72f | 515 | die "Cannot '$squash_style' without a previous commit" |
1b1dce4b JS |
516 | |
517 | mark_action_done | |
a25eb139 | 518 | update_squash_messages $squash_style $sha1 |
6bb4e485 MZ |
519 | author_script_content=$(get_author_ident_from_commit HEAD) |
520 | echo "$author_script_content" > "$author_script" | |
521 | eval "$author_script_content" | |
2147f844 CW |
522 | if ! pick_one -n $sha1 |
523 | then | |
524 | git rev-parse --verify HEAD >"$amend" | |
525 | die_failed_squash $sha1 "$rest" | |
526 | fi | |
6368f3f8 | 527 | case "$(peek_next_command)" in |
0205e72f | 528 | squash|s|fixup|f) |
a25eb139 MH |
529 | # This is an intermediate commit; its message will only be |
530 | # used in case of trouble. So use the long version: | |
2147f844 | 531 | do_with_author output git commit --amend --no-verify -F "$squash_msg" || |
6bdcd0d2 | 532 | die_failed_squash $sha1 "$rest" |
376ccb8c | 533 | ;; |
6368f3f8 | 534 | *) |
a25eb139 | 535 | # This is the final command of this squash/fixup group |
6bb4e485 | 536 | if test -f "$fixup_msg" |
a25eb139 | 537 | then |
2147f844 | 538 | do_with_author git commit --amend --no-verify -F "$fixup_msg" || |
6bdcd0d2 MH |
539 | die_failed_squash $sha1 "$rest" |
540 | else | |
6bb4e485 | 541 | cp "$squash_msg" "$GIT_DIR"/SQUASH_MSG || exit |
6bdcd0d2 | 542 | rm -f "$GIT_DIR"/MERGE_MSG |
2147f844 | 543 | do_with_author git commit --amend --no-verify -F "$GIT_DIR"/SQUASH_MSG -e || |
6bdcd0d2 | 544 | die_failed_squash $sha1 "$rest" |
a25eb139 | 545 | fi |
6bb4e485 | 546 | rm -f "$squash_msg" "$fixup_msg" |
376ccb8c | 547 | ;; |
6368f3f8 | 548 | esac |
b079feed | 549 | record_in_rewritten $sha1 |
1b1dce4b | 550 | ;; |
cd035b1c | 551 | x|"exec") |
6bb4e485 | 552 | read -r command rest < "$todo" |
cd035b1c MM |
553 | mark_action_done |
554 | printf 'Executing: %s\n' "$rest" | |
555 | # "exec" command doesn't take a sha1 in the todo-list. | |
556 | # => can't just use $sha1 here. | |
431b7e78 | 557 | git rev-parse --verify HEAD > "$state_dir"/stopped-sha |
cd035b1c MM |
558 | ${SHELL:-@SHELL_PATH@} -c "$rest" # Actual execution |
559 | status=$? | |
1686519a JH |
560 | # Run in subshell because require_clean_work_tree can die. |
561 | dirty=f | |
562 | (require_clean_work_tree "rebase" 2>/dev/null) || dirty=t | |
cd035b1c MM |
563 | if test "$status" -ne 0 |
564 | then | |
565 | warn "Execution failed: $rest" | |
1686519a JH |
566 | test "$dirty" = f || |
567 | warn "and made changes to the index and/or the working tree" | |
568 | ||
cd035b1c MM |
569 | warn "You can fix the problem, and then run" |
570 | warn | |
571 | warn " git rebase --continue" | |
572 | warn | |
ecfe1ea9 JS |
573 | if test $status -eq 127 # command not found |
574 | then | |
575 | status=1 | |
576 | fi | |
cd035b1c | 577 | exit "$status" |
1686519a | 578 | elif test "$dirty" = t |
cd035b1c | 579 | then |
1686519a JH |
580 | warn "Execution succeeded: $rest" |
581 | warn "but left changes to the index and/or the working tree" | |
cd035b1c MM |
582 | warn "Commit or stash your changes, and then run" |
583 | warn | |
584 | warn " git rebase --continue" | |
585 | warn | |
586 | exit 1 | |
587 | fi | |
588 | ;; | |
1b1dce4b JS |
589 | *) |
590 | warn "Unknown command: $command $sha1 $rest" | |
9c8e1011 | 591 | fixtodo="Please fix this using 'git rebase --edit-todo'." |
f1be316a JK |
592 | if git rev-parse --verify -q "$sha1" >/dev/null |
593 | then | |
9c8e1011 | 594 | die_with_patch $sha1 "$fixtodo" |
f1be316a | 595 | else |
9c8e1011 | 596 | die "$fixtodo" |
f1be316a | 597 | fi |
376ccb8c | 598 | ;; |
1b1dce4b | 599 | esac |
6bb4e485 | 600 | test -s "$todo" && return |
1b1dce4b | 601 | |
68a163c9 | 602 | comment_for_reflog finish && |
6bb4e485 | 603 | newhead=$(git rev-parse HEAD) && |
431b7e78 | 604 | case $head_name in |
73697a0b | 605 | refs/*) |
1af221ef | 606 | message="$GIT_REFLOG_ACTION: $head_name onto $onto" && |
431b7e78 | 607 | git update-ref -m "$message" $head_name $newhead $orig_head && |
53f2ffa8 JK |
608 | git symbolic-ref \ |
609 | -m "$GIT_REFLOG_ACTION: returning to $head_name" \ | |
610 | HEAD $head_name | |
73697a0b JS |
611 | ;; |
612 | esac && { | |
431b7e78 | 613 | test ! -f "$state_dir"/verbose || |
2959c283 | 614 | git diff-tree --stat $orig_head..HEAD |
3df0a859 | 615 | } && |
eb2151bb | 616 | { |
6bb4e485 MZ |
617 | test -s "$rewritten_list" && |
618 | git notes copy --for-rewrite=rebase < "$rewritten_list" || | |
eb2151bb TR |
619 | true # we don't care if this copying failed |
620 | } && | |
b079feed | 621 | if test -x "$GIT_DIR"/hooks/post-rewrite && |
6bb4e485 MZ |
622 | test -s "$rewritten_list"; then |
623 | "$GIT_DIR"/hooks/post-rewrite rebase < "$rewritten_list" | |
b079feed TR |
624 | true # we don't care if this hook failed |
625 | fi && | |
431b7e78 | 626 | rm -rf "$state_dir" && |
73697a0b | 627 | git gc --auto && |
431b7e78 | 628 | warn "Successfully rebased and updated $head_name." |
1b1dce4b JS |
629 | |
630 | exit | |
631 | } | |
632 | ||
633 | do_rest () { | |
634 | while : | |
635 | do | |
636 | do_next | |
637 | done | |
1b1dce4b JS |
638 | } |
639 | ||
0e757e30 JS |
640 | # skip picking commits whose parents are unchanged |
641 | skip_unnecessary_picks () { | |
642 | fd=3 | |
2d6ca6ef | 643 | while read -r command rest |
0e757e30 JS |
644 | do |
645 | # fd=3 means we skip the command | |
2d6ca6ef BC |
646 | case "$fd,$command" in |
647 | 3,pick|3,p) | |
6bb4e485 | 648 | # pick a commit whose parent is current $onto -> skip |
14d87298 | 649 | sha1=${rest%% *} |
2d6ca6ef | 650 | case "$(git rev-parse --verify --quiet "$sha1"^)" in |
6bb4e485 MZ |
651 | "$onto"*) |
652 | onto=$sha1 | |
2d6ca6ef BC |
653 | ;; |
654 | *) | |
655 | fd=1 | |
656 | ;; | |
657 | esac | |
0e757e30 | 658 | ;; |
2d6ca6ef | 659 | 3,#*|3,) |
0e757e30 JS |
660 | # copy comments |
661 | ;; | |
662 | *) | |
663 | fd=1 | |
664 | ;; | |
665 | esac | |
d1c3b10f | 666 | printf '%s\n' "$command${rest:+ }$rest" >&$fd |
6bb4e485 MZ |
667 | done <"$todo" >"$todo.new" 3>>"$done" && |
668 | mv -f "$todo".new "$todo" && | |
b079feed TR |
669 | case "$(peek_next_command)" in |
670 | squash|s|fixup|f) | |
6bb4e485 | 671 | record_in_rewritten "$onto" |
b079feed TR |
672 | ;; |
673 | esac || | |
0e757e30 JS |
674 | die "Could not skip unnecessary pick commands" |
675 | } | |
676 | ||
f59baa50 NS |
677 | # Rearrange the todo list that has both "pick sha1 msg" and |
678 | # "pick sha1 fixup!/squash! msg" appears in it so that the latter | |
679 | # comes immediately after the former, and change "pick" to | |
680 | # "fixup"/"squash". | |
681 | rearrange_squash () { | |
68d5d03b KB |
682 | # extract fixup!/squash! lines and resolve any referenced sha1's |
683 | while read -r pick sha1 message | |
684 | do | |
685 | case "$message" in | |
686 | "squash! "*|"fixup! "*) | |
687 | action="${message%%!*}" | |
688 | rest="${message#*! }" | |
689 | echo "$sha1 $action $rest" | |
690 | # if it's a single word, try to resolve to a full sha1 and | |
691 | # emit a second copy. This allows us to match on both message | |
692 | # and on sha1 prefix | |
693 | if test "${rest#* }" = "$rest"; then | |
694 | fullsha="$(git rev-parse -q --verify "$rest" 2>/dev/null)" | |
695 | if test -n "$fullsha"; then | |
696 | # prefix the action to uniquely identify this line as | |
697 | # intended for full sha1 match | |
698 | echo "$sha1 +$action $fullsha" | |
699 | fi | |
700 | fi | |
701 | esac | |
702 | done >"$1.sq" <"$1" | |
f59baa50 NS |
703 | test -s "$1.sq" || return |
704 | ||
705 | used= | |
57f2b6b2 | 706 | while read -r pick sha1 message |
f59baa50 NS |
707 | do |
708 | case " $used" in | |
709 | *" $sha1 "*) continue ;; | |
710 | esac | |
938791cd | 711 | printf '%s\n' "$pick $sha1 $message" |
d3d7a421 | 712 | used="$used$sha1 " |
6bb4e485 | 713 | while read -r squash action msg_content |
f59baa50 | 714 | do |
d3d7a421 KB |
715 | case " $used" in |
716 | *" $squash "*) continue ;; | |
717 | esac | |
68d5d03b KB |
718 | emit=0 |
719 | case "$action" in | |
720 | +*) | |
721 | action="${action#+}" | |
722 | # full sha1 prefix test | |
6bb4e485 | 723 | case "$msg_content" in "$sha1"*) emit=1;; esac ;; |
68d5d03b KB |
724 | *) |
725 | # message prefix test | |
6bb4e485 | 726 | case "$message" in "$msg_content"*) emit=1;; esac ;; |
68d5d03b KB |
727 | esac |
728 | if test $emit = 1; then | |
6bb4e485 | 729 | printf '%s\n' "$action $squash $action! $msg_content" |
f59baa50 | 730 | used="$used$squash " |
68d5d03b | 731 | fi |
f59baa50 NS |
732 | done <"$1.sq" |
733 | done >"$1.rearranged" <"$1" | |
734 | cat "$1.rearranged" >"$1" | |
735 | rm -f "$1.sq" "$1.rearranged" | |
736 | } | |
737 | ||
c2145384 LK |
738 | # Add commands after a pick or after a squash/fixup serie |
739 | # in the todo list. | |
740 | add_exec_commands () { | |
741 | { | |
742 | first=t | |
743 | while read -r insn rest | |
744 | do | |
745 | case $insn in | |
746 | pick) | |
747 | test -n "$first" || | |
748 | printf "%s" "$cmd" | |
749 | ;; | |
750 | esac | |
751 | printf "%s %s\n" "$insn" "$rest" | |
752 | first= | |
753 | done | |
754 | printf "%s" "$cmd" | |
755 | } <"$1" >"$1.new" && | |
756 | mv "$1.new" "$1" | |
757 | } | |
758 | ||
cf432ca0 MZ |
759 | case "$action" in |
760 | continue) | |
cf432ca0 | 761 | # do we have anything to commit? |
a6754cda | 762 | if git diff-index --cached --quiet HEAD -- |
cf432ca0 MZ |
763 | then |
764 | : Nothing to commit -- skip this | |
765 | else | |
ffaaed88 MM |
766 | if ! test -f "$author_script" |
767 | then | |
768 | die "You have staged changes in your working tree. If these changes are meant to be | |
769 | squashed into the previous commit, run: | |
770 | ||
771 | git commit --amend | |
772 | ||
773 | If they are meant to go into a new commit, run: | |
774 | ||
775 | git commit | |
776 | ||
777 | In both case, once you're done, continue with: | |
778 | ||
779 | git rebase --continue | |
780 | " | |
781 | fi | |
cf432ca0 | 782 | . "$author_script" || |
ffaaed88 | 783 | die "Error trying to find the author identity to amend commit" |
cf432ca0 | 784 | if test -f "$amend" |
03270628 | 785 | then |
cf432ca0 MZ |
786 | current_head=$(git rev-parse --verify HEAD) |
787 | test "$current_head" = $(cat "$amend") || | |
788 | die "\ | |
c14c3c82 DP |
789 | You have uncommitted changes in your working tree. Please, commit them |
790 | first and then run 'git rebase --continue' again." | |
2147f844 CW |
791 | do_with_author git commit --amend --no-verify -F "$msg" -e || |
792 | die "Could not commit staged changes." | |
793 | else | |
794 | do_with_author git commit --no-verify -F "$msg" -e || | |
795 | die "Could not commit staged changes." | |
03270628 | 796 | fi |
cf432ca0 | 797 | fi |
18640d99 | 798 | |
431b7e78 | 799 | record_in_rewritten "$(cat "$state_dir"/stopped-sha)" |
0acb62f2 | 800 | |
cf432ca0 MZ |
801 | require_clean_work_tree "rebase" |
802 | do_rest | |
803 | ;; | |
cf432ca0 | 804 | skip) |
cf432ca0 | 805 | git rerere clear |
cf432ca0 | 806 | |
2959c283 | 807 | do_rest |
cf432ca0 | 808 | ;; |
eb9a7cb4 | 809 | edit-todo) |
180bad3d | 810 | git stripspace --strip-comments <"$todo" >"$todo".new |
eb9a7cb4 AW |
811 | mv -f "$todo".new "$todo" |
812 | append_todo_help | |
180bad3d JK |
813 | git stripspace --comment-lines >>"$todo" <<\EOF |
814 | ||
815 | You are editing the todo file of an ongoing interactive rebase. | |
816 | To continue rebase after editing, run: | |
817 | git rebase --continue | |
818 | ||
eb9a7cb4 AW |
819 | EOF |
820 | ||
821 | git_sequence_editor "$todo" || | |
822 | die "Could not execute editor" | |
823 | ||
824 | exit | |
825 | ;; | |
cf432ca0 | 826 | esac |
1b1dce4b | 827 | |
34262322 MZ |
828 | git var GIT_COMMITTER_IDENT >/dev/null || |
829 | die "You need to set your committer info first" | |
1b1dce4b | 830 | |
34262322 MZ |
831 | comment_for_reflog start |
832 | ||
71786f54 | 833 | if test ! -z "$switch_to" |
34262322 | 834 | then |
71786f54 MZ |
835 | output git checkout "$switch_to" -- || |
836 | die "Could not checkout $switch_to" | |
34262322 MZ |
837 | fi |
838 | ||
431b7e78 MZ |
839 | orig_head=$(git rev-parse --verify HEAD) || die "No HEAD?" |
840 | mkdir "$state_dir" || die "Could not create temporary $state_dir" | |
34262322 | 841 | |
431b7e78 | 842 | : > "$state_dir"/interactive || die "Could not mark as interactive" |
84df4560 | 843 | write_basic_state |
6bb4e485 | 844 | if test t = "$preserve_merges" |
34262322 | 845 | then |
6bb4e485 | 846 | if test -z "$rebase_root" |
34262322 | 847 | then |
6bb4e485 | 848 | mkdir "$rewritten" && |
431b7e78 | 849 | for c in $(git merge-base --all $orig_head $upstream) |
acc8559a | 850 | do |
6bb4e485 | 851 | echo $onto > "$rewritten"/$c || |
34262322 | 852 | die "Could not init rewritten commits" |
acc8559a | 853 | done |
34262322 | 854 | else |
6bb4e485 MZ |
855 | mkdir "$rewritten" && |
856 | echo $onto > "$rewritten"/root || | |
34262322 MZ |
857 | die "Could not init rewritten commits" |
858 | fi | |
859 | # No cherry-pick because our first pass is to determine | |
860 | # parents to rewrite and skipping dropped commits would | |
861 | # prematurely end our probe | |
6bb4e485 | 862 | merges_option= |
34262322 | 863 | else |
6bb4e485 | 864 | merges_option="--no-merges --cherry-pick" |
34262322 MZ |
865 | fi |
866 | ||
431b7e78 | 867 | shorthead=$(git rev-parse --short $orig_head) |
6bb4e485 MZ |
868 | shortonto=$(git rev-parse --short $onto) |
869 | if test -z "$rebase_root" | |
870 | # this is now equivalent to ! -z "$upstream" | |
34262322 | 871 | then |
6bb4e485 | 872 | shortupstream=$(git rev-parse --short $upstream) |
431b7e78 | 873 | revisions=$upstream...$orig_head |
6bb4e485 | 874 | shortrevisions=$shortupstream..$shorthead |
34262322 | 875 | else |
431b7e78 | 876 | revisions=$onto...$orig_head |
6bb4e485 | 877 | shortrevisions=$shorthead |
34262322 | 878 | fi |
6bb4e485 | 879 | git rev-list $merges_option --pretty=oneline --abbrev-commit \ |
34262322 | 880 | --abbrev=7 --reverse --left-right --topo-order \ |
6bb4e485 | 881 | $revisions | \ |
34262322 MZ |
882 | sed -n "s/^>//p" | |
883 | while read -r shortsha1 rest | |
884 | do | |
90e1818f | 885 | |
98697784 | 886 | if test -z "$keep_empty" && is_empty_commit $shortsha1 && ! is_merge_commit $shortsha1 |
90e1818f | 887 | then |
180bad3d | 888 | comment_out="$comment_char " |
90e1818f NH |
889 | else |
890 | comment_out= | |
891 | fi | |
892 | ||
6bb4e485 | 893 | if test t != "$preserve_merges" |
34262322 | 894 | then |
90e1818f | 895 | printf '%s\n' "${comment_out}pick $shortsha1 $rest" >>"$todo" |
34262322 MZ |
896 | else |
897 | sha1=$(git rev-parse $shortsha1) | |
6bb4e485 | 898 | if test -z "$rebase_root" |
acc8559a | 899 | then |
34262322 MZ |
900 | preserve=t |
901 | for p in $(git rev-list --parents -1 $sha1 | cut -d' ' -s -f2-) | |
acc8559a | 902 | do |
12bf8283 | 903 | if test -f "$rewritten"/$p |
acc8559a | 904 | then |
34262322 | 905 | preserve=f |
acc8559a SH |
906 | fi |
907 | done | |
34262322 MZ |
908 | else |
909 | preserve=f | |
910 | fi | |
911 | if test f = "$preserve" | |
912 | then | |
6bb4e485 | 913 | touch "$rewritten"/$sha1 |
90e1818f | 914 | printf '%s\n' "${comment_out}pick $shortsha1 $rest" >>"$todo" |
acc8559a | 915 | fi |
34262322 MZ |
916 | fi |
917 | done | |
d911d146 | 918 | |
34262322 | 919 | # Watch for commits that been dropped by --cherry-pick |
6bb4e485 | 920 | if test t = "$preserve_merges" |
34262322 | 921 | then |
6bb4e485 | 922 | mkdir "$dropped" |
34262322 | 923 | # Save all non-cherry-picked changes |
6bb4e485 | 924 | git rev-list $revisions --left-right --cherry-pick | \ |
431b7e78 | 925 | sed -n "s/^>//p" > "$state_dir"/not-cherry-picks |
34262322 MZ |
926 | # Now all commits and note which ones are missing in |
927 | # not-cherry-picks and hence being dropped | |
6bb4e485 | 928 | git rev-list $revisions | |
34262322 MZ |
929 | while read rev |
930 | do | |
431b7e78 | 931 | if test -f "$rewritten"/$rev -a "$(sane_grep "$rev" "$state_dir"/not-cherry-picks)" = "" |
34262322 MZ |
932 | then |
933 | # Use -f2 because if rev-list is telling us this commit is | |
934 | # not worthwhile, we don't want to track its multiple heads, | |
935 | # just the history of its first-parent for others that will | |
936 | # be rebasing on top of it | |
6bb4e485 | 937 | git rev-list --parents -1 $rev | cut -d' ' -s -f2 > "$dropped"/$rev |
34262322 | 938 | short=$(git rev-list -1 --abbrev-commit --abbrev=7 $rev) |
6bb4e485 MZ |
939 | sane_grep -v "^[a-z][a-z]* $short" <"$todo" > "${todo}2" ; mv "${todo}2" "$todo" |
940 | rm "$rewritten"/$rev | |
34262322 MZ |
941 | fi |
942 | done | |
943 | fi | |
944 | ||
6bb4e485 MZ |
945 | test -s "$todo" || echo noop >> "$todo" |
946 | test -n "$autosquash" && rearrange_squash "$todo" | |
c2145384 LK |
947 | test -n "$cmd" && add_exec_commands "$todo" |
948 | ||
180bad3d | 949 | cat >>"$todo" <<EOF |
6047a234 | 950 | |
180bad3d | 951 | $comment_char Rebase $shortrevisions onto $shortonto |
fcc5ef1c AW |
952 | EOF |
953 | append_todo_help | |
180bad3d JK |
954 | git stripspace --comment-lines >>"$todo" <<\EOF |
955 | ||
956 | However, if you remove everything, the rebase will be aborted. | |
957 | ||
1b1dce4b | 958 | EOF |
1b1dce4b | 959 | |
90e1818f NH |
960 | if test -z "$keep_empty" |
961 | then | |
180bad3d | 962 | printf '%s\n' "$comment_char Note that empty commits are commented out" >>"$todo" |
90e1818f NH |
963 | fi |
964 | ||
965 | ||
6bb4e485 | 966 | has_action "$todo" || |
34262322 | 967 | die_abort "Nothing to do" |
1b1dce4b | 968 | |
6bb4e485 | 969 | cp "$todo" "$todo".backup |
821881d8 | 970 | git_sequence_editor "$todo" || |
34262322 | 971 | die_abort "Could not execute editor" |
1b1dce4b | 972 | |
6bb4e485 | 973 | has_action "$todo" || |
34262322 | 974 | die_abort "Nothing to do" |
c54b7817 | 975 | |
6bb4e485 | 976 | test -d "$rewritten" || test -n "$force_rebase" || skip_unnecessary_picks |
0e757e30 | 977 | |
6bb4e485 | 978 | output git checkout $onto || die_abort "could not detach HEAD" |
431b7e78 | 979 | git update-ref ORIG_HEAD $orig_head |
34262322 | 980 | do_rest |