]>
Commit | Line | Data |
---|---|---|
bc5c5ec0 | 1 | #include "git-compat-util.h" |
0b027f6c | 2 | #include "abspath.h" |
6c6ddf92 | 3 | #include "advice.h" |
36bf1958 | 4 | #include "alloc.h" |
b2141fc1 | 5 | #include "config.h" |
d5fff46f | 6 | #include "copy.h" |
7ee24e18 | 7 | #include "environment.h" |
f394e093 | 8 | #include "gettext.h" |
41771fa4 | 9 | #include "hex.h" |
697cc8ef | 10 | #include "lockfile.h" |
26ae337b | 11 | #include "dir.h" |
87bed179 | 12 | #include "object-file.h" |
dabab1d6 | 13 | #include "object-name.h" |
cbd53a21 | 14 | #include "object-store.h" |
043a4492 | 15 | #include "object.h" |
ca4eed70 | 16 | #include "pager.h" |
043a4492 | 17 | #include "commit.h" |
0505d604 | 18 | #include "sequencer.h" |
043a4492 RR |
19 | #include "tag.h" |
20 | #include "run-command.h" | |
5e3aba33 | 21 | #include "hook.h" |
d807c4a0 | 22 | #include "exec-cmd.h" |
043a4492 RR |
23 | #include "utf8.h" |
24 | #include "cache-tree.h" | |
25 | #include "diff.h" | |
c339932b | 26 | #include "path.h" |
043a4492 RR |
27 | #include "revision.h" |
28 | #include "rerere.h" | |
750324dd | 29 | #include "merge.h" |
14c4586c EN |
30 | #include "merge-ort.h" |
31 | #include "merge-ort-wrappers.h" | |
043a4492 | 32 | #include "refs.h" |
baf889c2 | 33 | #include "sparse-index.h" |
dbbcd44f | 34 | #include "strvec.h" |
a1c75762 | 35 | #include "quote.h" |
967dfd4d | 36 | #include "trailer.h" |
56dc3ab0 | 37 | #include "log-tree.h" |
311af526 | 38 | #include "wt-status.h" |
c44a4c65 | 39 | #include "hashmap.h" |
a87a6f3c PW |
40 | #include "notes-utils.h" |
41 | #include "sigchain.h" | |
9055e401 JS |
42 | #include "unpack-trees.h" |
43 | #include "worktree.h" | |
1644c73c JS |
44 | #include "oidmap.h" |
45 | #include "oidset.h" | |
8315bd20 | 46 | #include "commit-slab.h" |
65b5f948 | 47 | #include "alias.h" |
64043556 | 48 | #include "commit-reach.h" |
b97e1873 | 49 | #include "rebase-interactive.h" |
0816f1df | 50 | #include "reset.h" |
900b50c2 | 51 | #include "branch.h" |
d5ebb50d | 52 | #include "wrapper.h" |
043a4492 RR |
53 | |
54 | #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION" | |
26ae337b | 55 | |
5fe81438 | 56 | static const char sign_off_header[] = "Signed-off-by: "; |
cd650a4e | 57 | static const char cherry_picked_prefix[] = "(cherry picked from commit "; |
5ed75e2a | 58 | |
66618a50 PW |
59 | GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG") |
60 | ||
901ba7b1 | 61 | static GIT_PATH_FUNC(git_path_seq_dir, "sequencer") |
8a2a0f53 JS |
62 | |
63 | static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo") | |
64 | static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts") | |
65 | static GIT_PATH_FUNC(git_path_head_file, "sequencer/head") | |
1e41229d | 66 | static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety") |
f932729c | 67 | |
84583957 JS |
68 | static GIT_PATH_FUNC(rebase_path, "rebase-merge") |
69 | /* | |
70 | * The file containing rebase commands, comments, and empty lines. | |
71 | * This file is created by "git rebase -i" then edited by the user. As | |
72 | * the lines are processed, they are removed from the front of this | |
73 | * file and written to the tail of 'done'. | |
74 | */ | |
44b776c3 | 75 | GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo") |
a930eb03 | 76 | GIT_PATH_FUNC(rebase_path_todo_backup, "rebase-merge/git-rebase-todo.backup") |
b97e1873 | 77 | |
5a5445d8 AG |
78 | GIT_PATH_FUNC(rebase_path_dropped, "rebase-merge/dropped") |
79 | ||
1df6df0c JS |
80 | /* |
81 | * The rebase command lines that have already been processed. A line | |
82 | * is moved here when it is first handled, before any associated user | |
83 | * actions. | |
84 | */ | |
85 | static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done") | |
ef80069a JS |
86 | /* |
87 | * The file to keep track of how many commands were already processed (e.g. | |
88 | * for the prompt). | |
89 | */ | |
9ad36356 | 90 | static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum") |
ef80069a JS |
91 | /* |
92 | * The file to keep track of how many commands are to be processed in total | |
93 | * (e.g. for the prompt). | |
94 | */ | |
9ad36356 | 95 | static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end") |
6e98de72 JS |
96 | /* |
97 | * The commit message that is planned to be used for any changes that | |
98 | * need to be committed following a user interaction. | |
99 | */ | |
100 | static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message") | |
101 | /* | |
102 | * The file into which is accumulated the suggested commit message for | |
103 | * squash/fixup commands. When the first of a series of squash/fixups | |
104 | * is seen, the file is created and the commit message from the | |
105 | * previous commit and from the first squash/fixup commit are written | |
106 | * to it. The commit message for each subsequent squash/fixup commit | |
107 | * is appended to the file as it is processed. | |
6e98de72 JS |
108 | */ |
109 | static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash") | |
110 | /* | |
111 | * If the current series of squash/fixups has not yet included a squash | |
112 | * command, then this file exists and holds the commit message of the | |
113 | * original "pick" commit. (If the series ends without a "squash" | |
114 | * command, then this can be used as the commit message of the combined | |
115 | * commit without opening the editor.) | |
116 | */ | |
117 | static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup") | |
e12a7ef5 JS |
118 | /* |
119 | * This file contains the list fixup/squash commands that have been | |
120 | * accumulated into message-fixup or message-squash so far. | |
121 | */ | |
122 | static GIT_PATH_FUNC(rebase_path_current_fixups, "rebase-merge/current-fixups") | |
b5a67045 JS |
123 | /* |
124 | * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and | |
125 | * GIT_AUTHOR_DATE that will be used for the commit that is currently | |
126 | * being rebased. | |
127 | */ | |
128 | static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script") | |
56dc3ab0 JS |
129 | /* |
130 | * When an "edit" rebase command is being processed, the SHA1 of the | |
131 | * commit to be edited is recorded in this file. When "git rebase | |
132 | * --continue" is executed, if there are any staged changes then they | |
133 | * will be amended to the HEAD commit, but only provided the HEAD | |
134 | * commit is still the commit to be edited. When any other rebase | |
135 | * command is processed, this file is deleted. | |
136 | */ | |
137 | static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend") | |
138 | /* | |
139 | * When we stop at a given patch via the "edit" command, this file contains | |
0512eabd | 140 | * the commit object name of the corresponding patch. |
56dc3ab0 JS |
141 | */ |
142 | static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha") | |
25cb8df9 JS |
143 | /* |
144 | * For the post-rewrite hook, we make a list of rewritten commits and | |
145 | * their new sha1s. The rewritten-pending list keeps the sha1s of | |
146 | * commits that have been processed, but not committed yet, | |
147 | * e.g. because they are waiting for a 'squash' command. | |
148 | */ | |
149 | static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list") | |
150 | static GIT_PATH_FUNC(rebase_path_rewritten_pending, | |
151 | "rebase-merge/rewritten-pending") | |
9055e401 | 152 | |
d87d48b2 | 153 | /* |
15beaaa3 | 154 | * The path of the file containing the OID of the "squash onto" commit, i.e. |
d87d48b2 JS |
155 | * the dummy commit used for `reset [new root]`. |
156 | */ | |
157 | static GIT_PATH_FUNC(rebase_path_squash_onto, "rebase-merge/squash-onto") | |
158 | ||
9055e401 JS |
159 | /* |
160 | * The path of the file listing refs that need to be deleted after the rebase | |
161 | * finishes. This is used by the `label` command to record the need for cleanup. | |
162 | */ | |
163 | static GIT_PATH_FUNC(rebase_path_refs_to_delete, "rebase-merge/refs-to-delete") | |
164 | ||
aa7f2fd1 DS |
165 | /* |
166 | * The update-refs file stores a list of refs that will be updated at the end | |
167 | * of the rebase sequence. The 'update-ref <ref>' commands in the todo file | |
168 | * update the OIDs for the refs in this file, but the refs are not updated | |
169 | * until the end of the rebase sequence. | |
170 | * | |
171 | * rebase_path_update_refs() returns the path to this file for a given | |
172 | * worktree directory. For the current worktree, pass the_repository->gitdir. | |
173 | */ | |
174 | static char *rebase_path_update_refs(const char *wt_git_dir) | |
175 | { | |
176 | return xstrfmt("%s/rebase-merge/update-refs", wt_git_dir); | |
177 | } | |
178 | ||
a1c75762 JS |
179 | /* |
180 | * The following files are written by git-rebase just after parsing the | |
65850686 | 181 | * command-line. |
a1c75762 JS |
182 | */ |
183 | static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt") | |
7573cec5 | 184 | static GIT_PATH_FUNC(rebase_path_cdate_is_adate, "rebase-merge/cdate_is_adate") |
a3894aad | 185 | static GIT_PATH_FUNC(rebase_path_ignore_date, "rebase-merge/ignore_date") |
556907f1 JS |
186 | static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head") |
187 | static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose") | |
899b49c4 | 188 | static GIT_PATH_FUNC(rebase_path_quiet, "rebase-merge/quiet") |
a852ec7f | 189 | static GIT_PATH_FUNC(rebase_path_signoff, "rebase-merge/signoff") |
4b83ce9f JS |
190 | static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name") |
191 | static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto") | |
796c7972 | 192 | static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash") |
ca6c6b45 JS |
193 | static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy") |
194 | static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts") | |
9b6d7a62 | 195 | static GIT_PATH_FUNC(rebase_path_allow_rerere_autoupdate, "rebase-merge/allow_rerere_autoupdate") |
d421afa0 | 196 | static GIT_PATH_FUNC(rebase_path_reschedule_failed_exec, "rebase-merge/reschedule-failed-exec") |
e5b32bff | 197 | static GIT_PATH_FUNC(rebase_path_no_reschedule_failed_exec, "rebase-merge/no-reschedule-failed-exec") |
e98c4269 EN |
198 | static GIT_PATH_FUNC(rebase_path_drop_redundant_commits, "rebase-merge/drop_redundant_commits") |
199 | static GIT_PATH_FUNC(rebase_path_keep_redundant_commits, "rebase-merge/keep_redundant_commits") | |
b5a67045 | 200 | |
aa7f2fd1 DS |
201 | /** |
202 | * A 'struct update_refs_record' represents a value in the update-refs | |
203 | * list. We use a string_list to map refs to these (before, after) pairs. | |
204 | */ | |
205 | struct update_ref_record { | |
206 | struct object_id before; | |
207 | struct object_id after; | |
208 | }; | |
209 | ||
89fc0b53 DS |
210 | static struct update_ref_record *init_update_ref_record(const char *ref) |
211 | { | |
212 | struct update_ref_record *rec; | |
213 | ||
214 | CALLOC_ARRAY(rec, 1); | |
215 | ||
216 | oidcpy(&rec->before, null_oid()); | |
217 | oidcpy(&rec->after, null_oid()); | |
218 | ||
219 | /* This may fail, but that's fine, we will keep the null OID. */ | |
220 | read_ref(ref, &rec->before); | |
221 | ||
222 | return rec; | |
223 | } | |
224 | ||
28d6daed PW |
225 | static int git_sequencer_config(const char *k, const char *v, void *cb) |
226 | { | |
227 | struct replay_opts *opts = cb; | |
228 | int status; | |
229 | ||
230 | if (!strcmp(k, "commit.cleanup")) { | |
231 | const char *s; | |
232 | ||
233 | status = git_config_string(&s, k, v); | |
234 | if (status) | |
235 | return status; | |
236 | ||
d74f3e58 | 237 | if (!strcmp(s, "verbatim")) { |
28d6daed | 238 | opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE; |
d74f3e58 PW |
239 | opts->explicit_cleanup = 1; |
240 | } else if (!strcmp(s, "whitespace")) { | |
28d6daed | 241 | opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SPACE; |
d74f3e58 PW |
242 | opts->explicit_cleanup = 1; |
243 | } else if (!strcmp(s, "strip")) { | |
28d6daed | 244 | opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_ALL; |
d74f3e58 PW |
245 | opts->explicit_cleanup = 1; |
246 | } else if (!strcmp(s, "scissors")) { | |
1a2b985f | 247 | opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_SCISSORS; |
d74f3e58 PW |
248 | opts->explicit_cleanup = 1; |
249 | } else { | |
28d6daed PW |
250 | warning(_("invalid commit message cleanup mode '%s'"), |
251 | s); | |
d74f3e58 | 252 | } |
28d6daed | 253 | |
f40f3c16 | 254 | free((char *)s); |
28d6daed PW |
255 | return status; |
256 | } | |
257 | ||
258 | if (!strcmp(k, "commit.gpgsign")) { | |
ed1e5282 | 259 | opts->gpg_sign = git_config_bool(k, v) ? xstrdup("") : NULL; |
28d6daed PW |
260 | return 0; |
261 | } | |
262 | ||
14c4586c EN |
263 | if (!opts->default_strategy && !strcmp(k, "pull.twohead")) { |
264 | int ret = git_config_string((const char**)&opts->default_strategy, k, v); | |
265 | if (ret == 0) { | |
266 | /* | |
267 | * pull.twohead is allowed to be multi-valued; we only | |
268 | * care about the first value. | |
269 | */ | |
270 | char *tmp = strchr(opts->default_strategy, ' '); | |
271 | if (tmp) | |
272 | *tmp = '\0'; | |
273 | } | |
274 | return ret; | |
275 | } | |
276 | ||
191faaf7 | 277 | if (opts->action == REPLAY_REVERT && !strcmp(k, "revert.reference")) |
43966ab3 JH |
278 | opts->commit_use_reference = git_config_bool(k, v); |
279 | ||
28d6daed PW |
280 | return git_diff_basic_config(k, v, NULL); |
281 | } | |
282 | ||
283 | void sequencer_init_config(struct replay_opts *opts) | |
284 | { | |
285 | opts->default_msg_cleanup = COMMIT_MSG_CLEANUP_NONE; | |
286 | git_config(git_sequencer_config, opts); | |
287 | } | |
288 | ||
b5a67045 JS |
289 | static inline int is_rebase_i(const struct replay_opts *opts) |
290 | { | |
84583957 | 291 | return opts->action == REPLAY_INTERACTIVE_REBASE; |
b5a67045 JS |
292 | } |
293 | ||
285abf56 JS |
294 | static const char *get_dir(const struct replay_opts *opts) |
295 | { | |
84583957 JS |
296 | if (is_rebase_i(opts)) |
297 | return rebase_path(); | |
285abf56 JS |
298 | return git_path_seq_dir(); |
299 | } | |
300 | ||
c0246501 JS |
301 | static const char *get_todo_path(const struct replay_opts *opts) |
302 | { | |
84583957 JS |
303 | if (is_rebase_i(opts)) |
304 | return rebase_path_todo(); | |
c0246501 JS |
305 | return git_path_todo_file(); |
306 | } | |
307 | ||
bab4d109 BC |
308 | /* |
309 | * Returns 0 for non-conforming footer | |
310 | * Returns 1 for conforming footer | |
311 | * Returns 2 when sob exists within conforming footer | |
312 | * Returns 3 when sob exists within conforming footer as last entry | |
313 | */ | |
314 | static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob, | |
66e83d9b | 315 | size_t ignore_footer) |
b971e04f | 316 | { |
00a21f5c | 317 | struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT; |
967dfd4d | 318 | struct trailer_info info; |
a3b636e2 | 319 | size_t i; |
967dfd4d | 320 | int found_sob = 0, found_sob_last = 0; |
9dad073d | 321 | char saved_char; |
b971e04f | 322 | |
ffce7f59 JK |
323 | opts.no_divider = 1; |
324 | ||
9dad073d JK |
325 | if (ignore_footer) { |
326 | saved_char = sb->buf[sb->len - ignore_footer]; | |
327 | sb->buf[sb->len - ignore_footer] = '\0'; | |
328 | } | |
329 | ||
00a21f5c | 330 | trailer_info_get(&info, sb->buf, &opts); |
b971e04f | 331 | |
9dad073d JK |
332 | if (ignore_footer) |
333 | sb->buf[sb->len - ignore_footer] = saved_char; | |
334 | ||
967dfd4d | 335 | if (info.trailer_start == info.trailer_end) |
b971e04f BC |
336 | return 0; |
337 | ||
967dfd4d JT |
338 | for (i = 0; i < info.trailer_nr; i++) |
339 | if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) { | |
340 | found_sob = 1; | |
341 | if (i == info.trailer_nr - 1) | |
342 | found_sob_last = 1; | |
343 | } | |
b971e04f | 344 | |
967dfd4d | 345 | trailer_info_release(&info); |
bab4d109 | 346 | |
967dfd4d | 347 | if (found_sob_last) |
bab4d109 BC |
348 | return 3; |
349 | if (found_sob) | |
350 | return 2; | |
b971e04f BC |
351 | return 1; |
352 | } | |
5ed75e2a | 353 | |
a1c75762 JS |
354 | static const char *gpg_sign_opt_quoted(struct replay_opts *opts) |
355 | { | |
356 | static struct strbuf buf = STRBUF_INIT; | |
357 | ||
358 | strbuf_reset(&buf); | |
359 | if (opts->gpg_sign) | |
360 | sq_quotef(&buf, "-S%s", opts->gpg_sign); | |
361 | return buf.buf; | |
362 | } | |
363 | ||
9ff2f060 | 364 | void replay_opts_release(struct replay_opts *opts) |
6a09c3a9 ÆAB |
365 | { |
366 | free(opts->gpg_sign); | |
367 | free(opts->reflog_action); | |
368 | free(opts->default_strategy); | |
369 | free(opts->strategy); | |
fb60b9f3 | 370 | strvec_clear (&opts->xopts); |
6a09c3a9 | 371 | strbuf_release(&opts->current_fixups); |
a6a700a4 ÆAB |
372 | if (opts->revs) |
373 | release_revisions(opts->revs); | |
374 | free(opts->revs); | |
6a09c3a9 ÆAB |
375 | } |
376 | ||
2863584f | 377 | int sequencer_remove_state(struct replay_opts *opts) |
26ae337b | 378 | { |
9055e401 | 379 | struct strbuf buf = STRBUF_INIT; |
6a09c3a9 | 380 | int ret = 0; |
03a4e260 | 381 | |
9055e401 JS |
382 | if (is_rebase_i(opts) && |
383 | strbuf_read_file(&buf, rebase_path_refs_to_delete(), 0) > 0) { | |
384 | char *p = buf.buf; | |
385 | while (*p) { | |
386 | char *eol = strchr(p, '\n'); | |
387 | if (eol) | |
388 | *eol = '\0'; | |
c2417d3a | 389 | if (delete_ref("(rebase) cleanup", p, NULL, 0) < 0) { |
9055e401 | 390 | warning(_("could not delete '%s'"), p); |
37e9ee5c PW |
391 | ret = -1; |
392 | } | |
9055e401 JS |
393 | if (!eol) |
394 | break; | |
395 | p = eol + 1; | |
396 | } | |
397 | } | |
398 | ||
9055e401 JS |
399 | strbuf_reset(&buf); |
400 | strbuf_addstr(&buf, get_dir(opts)); | |
37e9ee5c PW |
401 | if (remove_dir_recursively(&buf, 0)) |
402 | ret = error(_("could not remove '%s'"), buf.buf); | |
9055e401 | 403 | strbuf_release(&buf); |
2863584f | 404 | |
37e9ee5c | 405 | return ret; |
26ae337b | 406 | } |
043a4492 RR |
407 | |
408 | static const char *action_name(const struct replay_opts *opts) | |
409 | { | |
84583957 JS |
410 | switch (opts->action) { |
411 | case REPLAY_REVERT: | |
412 | return N_("revert"); | |
413 | case REPLAY_PICK: | |
414 | return N_("cherry-pick"); | |
415 | case REPLAY_INTERACTIVE_REBASE: | |
c2417d3a | 416 | return N_("rebase"); |
84583957 | 417 | } |
1a07e59c | 418 | die(_("unknown action: %d"), opts->action); |
043a4492 RR |
419 | } |
420 | ||
043a4492 RR |
421 | struct commit_message { |
422 | char *parent_label; | |
7b35eaf8 JK |
423 | char *label; |
424 | char *subject; | |
043a4492 RR |
425 | const char *message; |
426 | }; | |
427 | ||
39755964 JS |
428 | static const char *short_commit_name(struct commit *commit) |
429 | { | |
d850b7a5 ÆAB |
430 | return repo_find_unique_abbrev(the_repository, &commit->object.oid, |
431 | DEFAULT_ABBREV); | |
39755964 JS |
432 | } |
433 | ||
043a4492 RR |
434 | static int get_message(struct commit *commit, struct commit_message *out) |
435 | { | |
043a4492 | 436 | const char *abbrev, *subject; |
7b35eaf8 | 437 | int subject_len; |
043a4492 | 438 | |
ecb5091f ÆAB |
439 | out->message = repo_logmsg_reencode(the_repository, commit, NULL, |
440 | get_commit_output_encoding()); | |
39755964 | 441 | abbrev = short_commit_name(commit); |
043a4492 RR |
442 | |
443 | subject_len = find_commit_subject(out->message, &subject); | |
444 | ||
7b35eaf8 | 445 | out->subject = xmemdupz(subject, subject_len); |
7d056dea | 446 | out->label = xstrfmt("%s (%s)", abbrev, out->subject); |
7b35eaf8 JK |
447 | out->parent_label = xstrfmt("parent of %s", out->label); |
448 | ||
043a4492 RR |
449 | return 0; |
450 | } | |
451 | ||
d74a4e57 | 452 | static void free_message(struct commit *commit, struct commit_message *msg) |
043a4492 RR |
453 | { |
454 | free(msg->parent_label); | |
7b35eaf8 JK |
455 | free(msg->label); |
456 | free(msg->subject); | |
ecb5091f | 457 | repo_unuse_commit_buffer(the_repository, commit, msg->message); |
043a4492 RR |
458 | } |
459 | ||
005af339 NTND |
460 | static void print_advice(struct repository *r, int show_hint, |
461 | struct replay_opts *opts) | |
043a4492 RR |
462 | { |
463 | char *msg = getenv("GIT_CHERRY_PICK_HELP"); | |
464 | ||
465 | if (msg) { | |
f172556b | 466 | advise("%s\n", msg); |
043a4492 | 467 | /* |
41ccfdd9 | 468 | * A conflict has occurred but the porcelain |
043a4492 RR |
469 | * (typically rebase --interactive) wants to take care |
470 | * of the commit itself so remove CHERRY_PICK_HEAD | |
471 | */ | |
c8e4159e HWN |
472 | refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD", |
473 | NULL, 0); | |
043a4492 RR |
474 | return; |
475 | } | |
476 | ||
ed727b19 PH |
477 | if (show_hint) { |
478 | if (opts->no_commit) | |
479 | advise(_("after resolving the conflicts, mark the corrected paths\n" | |
480 | "with 'git add <paths>' or 'git rm <paths>'")); | |
f172556b ZH |
481 | else if (opts->action == REPLAY_PICK) |
482 | advise(_("After resolving the conflicts, mark them with\n" | |
483 | "\"git add/rm <pathspec>\", then run\n" | |
484 | "\"git cherry-pick --continue\".\n" | |
485 | "You can instead skip this commit with \"git cherry-pick --skip\".\n" | |
486 | "To abort and get back to the state before \"git cherry-pick\",\n" | |
487 | "run \"git cherry-pick --abort\".")); | |
488 | else if (opts->action == REPLAY_REVERT) | |
489 | advise(_("After resolving the conflicts, mark them with\n" | |
490 | "\"git add/rm <pathspec>\", then run\n" | |
491 | "\"git revert --continue\".\n" | |
492 | "You can instead skip this commit with \"git revert --skip\".\n" | |
493 | "To abort and get back to the state before \"git revert\",\n" | |
494 | "run \"git revert --abort\".")); | |
ed727b19 | 495 | else |
f172556b | 496 | BUG("unexpected pick action in print_advice()"); |
ed727b19 | 497 | } |
043a4492 RR |
498 | } |
499 | ||
ddb81e50 AG |
500 | static int write_message(const void *buf, size_t len, const char *filename, |
501 | int append_eol) | |
043a4492 | 502 | { |
14bca6c6 | 503 | struct lock_file msg_file = LOCK_INIT; |
043a4492 | 504 | |
4ef3d8f0 JS |
505 | int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0); |
506 | if (msg_fd < 0) | |
93b3df6f | 507 | return error_errno(_("could not lock '%s'"), filename); |
75871495 | 508 | if (write_in_full(msg_fd, buf, len) < 0) { |
bf5c0571 | 509 | error_errno(_("could not write to '%s'"), filename); |
4f66c837 | 510 | rollback_lock_file(&msg_file); |
bf5c0571 | 511 | return -1; |
4f66c837 | 512 | } |
f56fffef | 513 | if (append_eol && write(msg_fd, "\n", 1) < 0) { |
bf5c0571 | 514 | error_errno(_("could not write eol to '%s'"), filename); |
f56fffef | 515 | rollback_lock_file(&msg_file); |
bf5c0571 | 516 | return -1; |
f56fffef | 517 | } |
350292a1 MÅ |
518 | if (commit_lock_file(&msg_file) < 0) |
519 | return error(_("failed to finalize '%s'"), filename); | |
4ef3d8f0 JS |
520 | |
521 | return 0; | |
043a4492 RR |
522 | } |
523 | ||
c20de8be | 524 | int read_oneliner(struct strbuf *buf, |
3442c3d1 | 525 | const char *path, unsigned flags) |
1dfc84e9 JS |
526 | { |
527 | int orig_len = buf->len; | |
528 | ||
1dfc84e9 | 529 | if (strbuf_read_file(buf, path, 0) < 0) { |
bfa50c2c DL |
530 | if ((flags & READ_ONELINER_WARN_MISSING) || |
531 | (errno != ENOENT && errno != ENOTDIR)) | |
5b2f6d9c | 532 | warning_errno(_("could not read '%s'"), path); |
1dfc84e9 JS |
533 | return 0; |
534 | } | |
535 | ||
536 | if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') { | |
537 | if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r') | |
538 | --buf->len; | |
539 | buf->buf[buf->len] = '\0'; | |
540 | } | |
541 | ||
3442c3d1 | 542 | if ((flags & READ_ONELINER_SKIP_IF_EMPTY) && buf->len == orig_len) |
1dfc84e9 JS |
543 | return 0; |
544 | ||
545 | return 1; | |
546 | } | |
547 | ||
005af339 | 548 | static struct tree *empty_tree(struct repository *r) |
043a4492 | 549 | { |
005af339 | 550 | return lookup_tree(r, the_hash_algo->empty_tree); |
043a4492 RR |
551 | } |
552 | ||
e1ff0a32 | 553 | static int error_dirty_index(struct repository *repo, struct replay_opts *opts) |
043a4492 | 554 | { |
e1ff0a32 | 555 | if (repo_read_index_unmerged(repo)) |
1c8dfc36 | 556 | return error_resolve_conflict(action_name(opts)); |
043a4492 | 557 | |
93b3df6f | 558 | error(_("your local changes would be overwritten by %s."), |
c28cbc5e | 559 | _(action_name(opts))); |
043a4492 | 560 | |
ed9bff08 | 561 | if (advice_enabled(ADVICE_COMMIT_BEFORE_MERGE)) |
93b3df6f | 562 | advise(_("commit your changes or stash them to proceed.")); |
043a4492 RR |
563 | return -1; |
564 | } | |
565 | ||
1e41229d SB |
566 | static void update_abort_safety_file(void) |
567 | { | |
568 | struct object_id head; | |
569 | ||
570 | /* Do nothing on a single-pick */ | |
571 | if (!file_exists(git_path_seq_dir())) | |
572 | return; | |
573 | ||
d850b7a5 | 574 | if (!repo_get_oid(the_repository, "HEAD", &head)) |
1e41229d SB |
575 | write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head)); |
576 | else | |
577 | write_file(git_path_abort_safety_file(), "%s", ""); | |
578 | } | |
579 | ||
f11c9580 NTND |
580 | static int fast_forward_to(struct repository *r, |
581 | const struct object_id *to, | |
582 | const struct object_id *from, | |
583 | int unborn, | |
584 | struct replay_opts *opts) | |
043a4492 | 585 | { |
d668d16c | 586 | struct ref_transaction *transaction; |
eb4be1cb | 587 | struct strbuf sb = STRBUF_INIT; |
d668d16c | 588 | struct strbuf err = STRBUF_INIT; |
043a4492 | 589 | |
e1ff0a32 | 590 | repo_read_index(r); |
f11c9580 | 591 | if (checkout_fast_forward(r, from, to, 1)) |
0e408fc3 | 592 | return -1; /* the callee should have complained already */ |
651ab9f5 | 593 | |
5670e0ec | 594 | strbuf_addf(&sb, "%s: fast-forward", action_name(opts)); |
d668d16c RS |
595 | |
596 | transaction = ref_transaction_begin(&err); | |
597 | if (!transaction || | |
598 | ref_transaction_update(transaction, "HEAD", | |
d87d48b2 | 599 | to, unborn && !is_rebase_i(opts) ? |
14228447 | 600 | null_oid() : from, |
1d147bdf | 601 | 0, sb.buf, &err) || |
db7516ab | 602 | ref_transaction_commit(transaction, &err)) { |
d668d16c RS |
603 | ref_transaction_free(transaction); |
604 | error("%s", err.buf); | |
605 | strbuf_release(&sb); | |
606 | strbuf_release(&err); | |
607 | return -1; | |
608 | } | |
651ab9f5 | 609 | |
eb4be1cb | 610 | strbuf_release(&sb); |
d668d16c RS |
611 | strbuf_release(&err); |
612 | ref_transaction_free(transaction); | |
1e41229d | 613 | update_abort_safety_file(); |
d668d16c | 614 | return 0; |
043a4492 RR |
615 | } |
616 | ||
f29cd862 DL |
617 | enum commit_msg_cleanup_mode get_cleanup_mode(const char *cleanup_arg, |
618 | int use_editor) | |
619 | { | |
620 | if (!cleanup_arg || !strcmp(cleanup_arg, "default")) | |
621 | return use_editor ? COMMIT_MSG_CLEANUP_ALL : | |
622 | COMMIT_MSG_CLEANUP_SPACE; | |
623 | else if (!strcmp(cleanup_arg, "verbatim")) | |
624 | return COMMIT_MSG_CLEANUP_NONE; | |
625 | else if (!strcmp(cleanup_arg, "whitespace")) | |
626 | return COMMIT_MSG_CLEANUP_SPACE; | |
627 | else if (!strcmp(cleanup_arg, "strip")) | |
628 | return COMMIT_MSG_CLEANUP_ALL; | |
629 | else if (!strcmp(cleanup_arg, "scissors")) | |
630 | return use_editor ? COMMIT_MSG_CLEANUP_SCISSORS : | |
631 | COMMIT_MSG_CLEANUP_SPACE; | |
632 | else | |
633 | die(_("Invalid cleanup mode %s"), cleanup_arg); | |
634 | } | |
635 | ||
dc42e9a8 PW |
636 | /* |
637 | * NB using int rather than enum cleanup_mode to stop clang's | |
638 | * -Wtautological-constant-out-of-range-compare complaining that the comparison | |
639 | * is always true. | |
640 | */ | |
641 | static const char *describe_cleanup_mode(int cleanup_mode) | |
642 | { | |
643 | static const char *modes[] = { "whitespace", | |
644 | "verbatim", | |
645 | "scissors", | |
646 | "strip" }; | |
647 | ||
648 | if (cleanup_mode < ARRAY_SIZE(modes)) | |
649 | return modes[cleanup_mode]; | |
650 | ||
651 | BUG("invalid cleanup_mode provided (%d)", cleanup_mode); | |
652 | } | |
653 | ||
f11c9580 | 654 | void append_conflicts_hint(struct index_state *istate, |
1a2b985f | 655 | struct strbuf *msgbuf, enum commit_msg_cleanup_mode cleanup_mode) |
75c961b7 JH |
656 | { |
657 | int i; | |
658 | ||
1a2b985f DL |
659 | if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) { |
660 | strbuf_addch(msgbuf, '\n'); | |
661 | wt_status_append_cut_line(msgbuf); | |
662 | strbuf_addch(msgbuf, comment_line_char); | |
663 | } | |
664 | ||
261f315b JH |
665 | strbuf_addch(msgbuf, '\n'); |
666 | strbuf_commented_addf(msgbuf, "Conflicts:\n"); | |
f11c9580 NTND |
667 | for (i = 0; i < istate->cache_nr;) { |
668 | const struct cache_entry *ce = istate->cache[i++]; | |
75c961b7 | 669 | if (ce_stage(ce)) { |
261f315b | 670 | strbuf_commented_addf(msgbuf, "\t%s\n", ce->name); |
f11c9580 NTND |
671 | while (i < istate->cache_nr && |
672 | !strcmp(ce->name, istate->cache[i]->name)) | |
75c961b7 JH |
673 | i++; |
674 | } | |
675 | } | |
676 | } | |
677 | ||
f11c9580 NTND |
678 | static int do_recursive_merge(struct repository *r, |
679 | struct commit *base, struct commit *next, | |
043a4492 | 680 | const char *base_label, const char *next_label, |
48be4c62 | 681 | struct object_id *head, struct strbuf *msgbuf, |
043a4492 RR |
682 | struct replay_opts *opts) |
683 | { | |
684 | struct merge_options o; | |
14c4586c | 685 | struct merge_result result; |
b4db8a2b | 686 | struct tree *next_tree, *base_tree, *head_tree; |
14c4586c | 687 | int clean, show_output; |
d20bc01a | 688 | int i; |
14bca6c6 | 689 | struct lock_file index_lock = LOCK_INIT; |
043a4492 | 690 | |
3a95f31d | 691 | if (repo_hold_locked_index(r, &index_lock, LOCK_REPORT_ON_ERROR) < 0) |
bd588867 | 692 | return -1; |
043a4492 | 693 | |
e1ff0a32 | 694 | repo_read_index(r); |
043a4492 | 695 | |
0d6caa2d | 696 | init_merge_options(&o, r); |
043a4492 RR |
697 | o.ancestor = base ? base_label : "(empty tree)"; |
698 | o.branch1 = "HEAD"; | |
699 | o.branch2 = next ? next_label : "(empty tree)"; | |
62fdb652 JS |
700 | if (is_rebase_i(opts)) |
701 | o.buffer_output = 2; | |
9268cf4a | 702 | o.show_rename_progress = 1; |
043a4492 RR |
703 | |
704 | head_tree = parse_tree_indirect(head); | |
4a93b899 ÆAB |
705 | next_tree = next ? repo_get_commit_tree(r, next) : empty_tree(r); |
706 | base_tree = base ? repo_get_commit_tree(r, base) : empty_tree(r); | |
043a4492 | 707 | |
fb60b9f3 PW |
708 | for (i = 0; i < opts->xopts.nr; i++) |
709 | parse_merge_opt(&o, opts->xopts.v[i]); | |
043a4492 | 710 | |
6a5fb966 | 711 | if (!opts->strategy || !strcmp(opts->strategy, "ort")) { |
14c4586c EN |
712 | memset(&result, 0, sizeof(result)); |
713 | merge_incore_nonrecursive(&o, base_tree, head_tree, next_tree, | |
714 | &result); | |
715 | show_output = !is_rebase_i(opts) || !result.clean; | |
716 | /* | |
717 | * TODO: merge_switch_to_result will update index/working tree; | |
718 | * we only really want to do that if !result.clean || this is | |
719 | * the final patch to be picked. But determining this is the | |
720 | * final patch would take some work, and "head_tree" would need | |
721 | * to be replace with the tree the index matched before we | |
722 | * started doing any picks. | |
723 | */ | |
724 | merge_switch_to_result(&o, head_tree, &result, 1, show_output); | |
725 | clean = result.clean; | |
726 | } else { | |
5d9c9349 | 727 | ensure_full_index(r->index); |
14c4586c EN |
728 | clean = merge_trees(&o, head_tree, next_tree, base_tree); |
729 | if (is_rebase_i(opts) && clean <= 0) | |
730 | fputs(o.obuf.buf, stdout); | |
731 | strbuf_release(&o.obuf); | |
732 | } | |
64816524 MÅ |
733 | if (clean < 0) { |
734 | rollback_lock_file(&index_lock); | |
f241ff0d | 735 | return clean; |
64816524 | 736 | } |
043a4492 | 737 | |
f11c9580 | 738 | if (write_locked_index(r->index, &index_lock, |
61000814 | 739 | COMMIT_LOCK | SKIP_IF_UNCHANGED)) |
66f5f6dc ÆAB |
740 | /* |
741 | * TRANSLATORS: %s will be "revert", "cherry-pick" or | |
c2417d3a | 742 | * "rebase". |
84583957 | 743 | */ |
c527b55e | 744 | return error(_("%s: Unable to write new index file"), |
c28cbc5e | 745 | _(action_name(opts))); |
043a4492 | 746 | |
75c961b7 | 747 | if (!clean) |
1a2b985f DL |
748 | append_conflicts_hint(r->index, msgbuf, |
749 | opts->default_msg_cleanup); | |
043a4492 RR |
750 | |
751 | return !clean; | |
752 | } | |
753 | ||
f11c9580 | 754 | static struct object_id *get_cache_tree_oid(struct index_state *istate) |
ba97aea1 | 755 | { |
f11c9580 NTND |
756 | if (!cache_tree_fully_valid(istate->cache_tree)) |
757 | if (cache_tree_update(istate, 0)) { | |
ba97aea1 JS |
758 | error(_("unable to update cache tree")); |
759 | return NULL; | |
760 | } | |
761 | ||
f11c9580 | 762 | return &istate->cache_tree->oid; |
ba97aea1 JS |
763 | } |
764 | ||
005af339 | 765 | static int is_index_unchanged(struct repository *r) |
b27cfb0d | 766 | { |
ba97aea1 | 767 | struct object_id head_oid, *cache_tree_oid; |
b27cfb0d | 768 | struct commit *head_commit; |
005af339 | 769 | struct index_state *istate = r->index; |
b27cfb0d | 770 | |
49e61479 | 771 | if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &head_oid, NULL)) |
aee42e1f | 772 | return error(_("could not resolve HEAD commit")); |
b27cfb0d | 773 | |
005af339 | 774 | head_commit = lookup_commit(r, &head_oid); |
4b580061 NH |
775 | |
776 | /* | |
777 | * If head_commit is NULL, check_commit, called from | |
778 | * lookup_commit, would have indicated that head_commit is not | |
c7c33f50 | 779 | * a commit object already. repo_parse_commit() will return failure |
4b580061 | 780 | * without further complaints in such a case. Otherwise, if |
c7c33f50 | 781 | * the commit is invalid, repo_parse_commit() will complain. So |
4b580061 NH |
782 | * there is nothing for us to say here. Just return failure. |
783 | */ | |
4a93b899 | 784 | if (repo_parse_commit(r, head_commit)) |
4b580061 | 785 | return -1; |
b27cfb0d | 786 | |
f11c9580 | 787 | if (!(cache_tree_oid = get_cache_tree_oid(istate))) |
ba97aea1 | 788 | return -1; |
b27cfb0d | 789 | |
4a7e27e9 | 790 | return oideq(cache_tree_oid, get_commit_tree_oid(head_commit)); |
b27cfb0d NH |
791 | } |
792 | ||
0473f28a JS |
793 | static int write_author_script(const char *message) |
794 | { | |
795 | struct strbuf buf = STRBUF_INIT; | |
796 | const char *eol; | |
797 | int res; | |
798 | ||
799 | for (;;) | |
800 | if (!*message || starts_with(message, "\n")) { | |
801 | missing_author: | |
802 | /* Missing 'author' line? */ | |
803 | unlink(rebase_path_author_script()); | |
804 | return 0; | |
805 | } else if (skip_prefix(message, "author ", &message)) | |
806 | break; | |
807 | else if ((eol = strchr(message, '\n'))) | |
808 | message = eol + 1; | |
809 | else | |
810 | goto missing_author; | |
811 | ||
812 | strbuf_addstr(&buf, "GIT_AUTHOR_NAME='"); | |
813 | while (*message && *message != '\n' && *message != '\r') | |
814 | if (skip_prefix(message, " <", &message)) | |
815 | break; | |
816 | else if (*message != '\'') | |
817 | strbuf_addch(&buf, *(message++)); | |
818 | else | |
4aa5ff94 | 819 | strbuf_addf(&buf, "'\\%c'", *(message++)); |
0473f28a JS |
820 | strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='"); |
821 | while (*message && *message != '\n' && *message != '\r') | |
822 | if (skip_prefix(message, "> ", &message)) | |
823 | break; | |
824 | else if (*message != '\'') | |
825 | strbuf_addch(&buf, *(message++)); | |
826 | else | |
4aa5ff94 | 827 | strbuf_addf(&buf, "'\\%c'", *(message++)); |
0473f28a JS |
828 | strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@"); |
829 | while (*message && *message != '\n' && *message != '\r') | |
830 | if (*message != '\'') | |
831 | strbuf_addch(&buf, *(message++)); | |
832 | else | |
4aa5ff94 | 833 | strbuf_addf(&buf, "'\\%c'", *(message++)); |
0f16c09a | 834 | strbuf_addch(&buf, '\''); |
0473f28a JS |
835 | res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1); |
836 | strbuf_release(&buf); | |
837 | return res; | |
838 | } | |
839 | ||
bcd33ec2 PW |
840 | /** |
841 | * Take a series of KEY='VALUE' lines where VALUE part is | |
842 | * sq-quoted, and append <KEY, VALUE> at the end of the string list | |
843 | */ | |
844 | static int parse_key_value_squoted(char *buf, struct string_list *list) | |
845 | { | |
846 | while (*buf) { | |
847 | struct string_list_item *item; | |
848 | char *np; | |
849 | char *cp = strchr(buf, '='); | |
850 | if (!cp) { | |
851 | np = strchrnul(buf, '\n'); | |
852 | return error(_("no key present in '%.*s'"), | |
853 | (int) (np - buf), buf); | |
854 | } | |
855 | np = strchrnul(cp, '\n'); | |
856 | *cp++ = '\0'; | |
857 | item = string_list_append(list, buf); | |
858 | ||
859 | buf = np + (*np == '\n'); | |
860 | *np = '\0'; | |
861 | cp = sq_dequote(cp); | |
862 | if (!cp) | |
863 | return error(_("unable to dequote value of '%s'"), | |
864 | item->string); | |
865 | item->util = xstrdup(cp); | |
866 | } | |
867 | return 0; | |
868 | } | |
4aa5ff94 | 869 | |
bcd33ec2 PW |
870 | /** |
871 | * Reads and parses the state directory's "author-script" file, and sets name, | |
872 | * email and date accordingly. | |
873 | * Returns 0 on success, -1 if the file could not be parsed. | |
874 | * | |
875 | * The author script is of the format: | |
876 | * | |
877 | * GIT_AUTHOR_NAME='$author_name' | |
878 | * GIT_AUTHOR_EMAIL='$author_email' | |
879 | * GIT_AUTHOR_DATE='$author_date' | |
880 | * | |
881 | * where $author_name, $author_email and $author_date are quoted. We are strict | |
c3c003e7 | 882 | * with our parsing, as the file was meant to be eval'd in the now-removed |
bcd33ec2 PW |
883 | * git-am.sh/git-rebase--interactive.sh scripts, and thus if the file differs |
884 | * from what this function expects, it is better to bail out than to do | |
885 | * something that the user does not expect. | |
4aa5ff94 | 886 | */ |
bcd33ec2 PW |
887 | int read_author_script(const char *path, char **name, char **email, char **date, |
888 | int allow_missing) | |
4aa5ff94 | 889 | { |
bcd33ec2 PW |
890 | struct strbuf buf = STRBUF_INIT; |
891 | struct string_list kv = STRING_LIST_INIT_DUP; | |
892 | int retval = -1; /* assume failure */ | |
893 | int i, name_i = -2, email_i = -2, date_i = -2, err = 0; | |
4aa5ff94 | 894 | |
bcd33ec2 PW |
895 | if (strbuf_read_file(&buf, path, 256) <= 0) { |
896 | strbuf_release(&buf); | |
897 | if (errno == ENOENT && allow_missing) | |
898 | return 0; | |
899 | else | |
900 | return error_errno(_("could not open '%s' for reading"), | |
901 | path); | |
902 | } | |
903 | ||
904 | if (parse_key_value_squoted(buf.buf, &kv)) | |
905 | goto finish; | |
906 | ||
907 | for (i = 0; i < kv.nr; i++) { | |
908 | if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) { | |
909 | if (name_i != -2) | |
910 | name_i = error(_("'GIT_AUTHOR_NAME' already given")); | |
911 | else | |
912 | name_i = i; | |
913 | } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) { | |
914 | if (email_i != -2) | |
915 | email_i = error(_("'GIT_AUTHOR_EMAIL' already given")); | |
916 | else | |
917 | email_i = i; | |
918 | } else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) { | |
919 | if (date_i != -2) | |
920 | date_i = error(_("'GIT_AUTHOR_DATE' already given")); | |
921 | else | |
922 | date_i = i; | |
923 | } else { | |
924 | err = error(_("unknown variable '%s'"), | |
925 | kv.items[i].string); | |
926 | } | |
927 | } | |
928 | if (name_i == -2) | |
929 | error(_("missing 'GIT_AUTHOR_NAME'")); | |
930 | if (email_i == -2) | |
931 | error(_("missing 'GIT_AUTHOR_EMAIL'")); | |
932 | if (date_i == -2) | |
933 | error(_("missing 'GIT_AUTHOR_DATE'")); | |
45350aeb | 934 | if (name_i < 0 || email_i < 0 || date_i < 0 || err) |
bcd33ec2 | 935 | goto finish; |
4d924528 JH |
936 | *name = kv.items[name_i].util; |
937 | *email = kv.items[email_i].util; | |
938 | *date = kv.items[date_i].util; | |
bcd33ec2 PW |
939 | retval = 0; |
940 | finish: | |
941 | string_list_clear(&kv, !!retval); | |
942 | strbuf_release(&buf); | |
943 | return retval; | |
4aa5ff94 PW |
944 | } |
945 | ||
b5a67045 | 946 | /* |
4d010a75 | 947 | * Read a GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL AND GIT_AUTHOR_DATE from a |
c972bf4c | 948 | * file with shell quoting into struct strvec. Returns -1 on |
4d010a75 | 949 | * error, 0 otherwise. |
b5a67045 | 950 | */ |
c972bf4c | 951 | static int read_env_script(struct strvec *env) |
b5a67045 | 952 | { |
4d010a75 | 953 | char *name, *email, *date; |
b5a67045 | 954 | |
4d010a75 PW |
955 | if (read_author_script(rebase_path_author_script(), |
956 | &name, &email, &date, 0)) | |
a2a20b0d | 957 | return -1; |
b5a67045 | 958 | |
c972bf4c JK |
959 | strvec_pushf(env, "GIT_AUTHOR_NAME=%s", name); |
960 | strvec_pushf(env, "GIT_AUTHOR_EMAIL=%s", email); | |
961 | strvec_pushf(env, "GIT_AUTHOR_DATE=%s", date); | |
4d010a75 PW |
962 | free(name); |
963 | free(email); | |
964 | free(date); | |
b5a67045 | 965 | |
a2a20b0d | 966 | return 0; |
b5a67045 JS |
967 | } |
968 | ||
356ee465 PW |
969 | static char *get_author(const char *message) |
970 | { | |
971 | size_t len; | |
972 | const char *a; | |
973 | ||
974 | a = find_commit_header(message, "author", &len); | |
975 | if (a) | |
976 | return xmemdupz(a, len); | |
977 | ||
978 | return NULL; | |
979 | } | |
980 | ||
b3193252 | 981 | static const char *author_date_from_env(const struct strvec *env) |
7573cec5 PW |
982 | { |
983 | int i; | |
984 | const char *date; | |
985 | ||
9c31b19d JH |
986 | for (i = 0; i < env->nr; i++) |
987 | if (skip_prefix(env->v[i], | |
7573cec5 PW |
988 | "GIT_AUTHOR_DATE=", &date)) |
989 | return date; | |
990 | /* | |
991 | * If GIT_AUTHOR_DATE is missing we should have already errored out when | |
992 | * reading the script | |
993 | */ | |
994 | BUG("GIT_AUTHOR_DATE missing from author script"); | |
995 | } | |
996 | ||
791eb870 JS |
997 | static const char staged_changes_advice[] = |
998 | N_("you have staged changes in your working tree\n" | |
999 | "If these changes are meant to be squashed into the previous commit, run:\n" | |
1000 | "\n" | |
1001 | " git commit --amend %s\n" | |
1002 | "\n" | |
1003 | "If they are meant to go into a new commit, run:\n" | |
1004 | "\n" | |
1005 | " git commit %s\n" | |
1006 | "\n" | |
1007 | "In both cases, once you're done, continue with:\n" | |
1008 | "\n" | |
1009 | " git rebase --continue\n"); | |
1010 | ||
789b3eff JS |
1011 | #define ALLOW_EMPTY (1<<0) |
1012 | #define EDIT_MSG (1<<1) | |
1013 | #define AMEND_MSG (1<<2) | |
1014 | #define CLEANUP_MSG (1<<3) | |
b92ff6e8 | 1015 | #define VERIFY_MSG (1<<4) |
d87d48b2 | 1016 | #define CREATE_ROOT_COMMIT (1<<5) |
f7d42cee | 1017 | #define VERBATIM_MSG (1<<6) |
789b3eff | 1018 | |
34bec2c4 AG |
1019 | static int run_command_silent_on_success(struct child_process *cmd) |
1020 | { | |
1021 | struct strbuf buf = STRBUF_INIT; | |
1022 | int rc; | |
1023 | ||
1024 | cmd->stdout_to_stderr = 1; | |
1025 | rc = pipe_command(cmd, | |
1026 | NULL, 0, | |
1027 | NULL, 0, | |
1028 | &buf, 0); | |
1029 | ||
1030 | if (rc) | |
1031 | fputs(buf.buf, stderr); | |
1032 | strbuf_release(&buf); | |
1033 | return rc; | |
1034 | } | |
1035 | ||
043a4492 RR |
1036 | /* |
1037 | * If we are cherry-pick, and if the merge did not result in | |
1038 | * hand-editing, we will hit this commit and inherit the original | |
1039 | * author date and name. | |
b5a67045 | 1040 | * |
043a4492 RR |
1041 | * If we are revert, or if our cherry-pick results in a hand merge, |
1042 | * we had better say that the current user is responsible for that. | |
b5a67045 JS |
1043 | * |
1044 | * An exception is when run_git_commit() is called during an | |
1045 | * interactive rebase: in that case, we will want to retain the | |
1046 | * author metadata. | |
043a4492 | 1047 | */ |
20f4b044 | 1048 | static int run_git_commit(const char *defmsg, |
f11c9580 | 1049 | struct replay_opts *opts, |
789b3eff | 1050 | unsigned int flags) |
043a4492 | 1051 | { |
07d968ef | 1052 | struct child_process cmd = CHILD_PROCESS_INIT; |
b27cfb0d | 1053 | |
f7d42cee JS |
1054 | if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG)) |
1055 | BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive"); | |
1056 | ||
07d968ef JS |
1057 | cmd.git_cmd = 1; |
1058 | ||
9d6b9df1 PW |
1059 | if (is_rebase_i(opts) && |
1060 | ((opts->committer_date_is_author_date && !opts->ignore_date) || | |
1061 | !(!defmsg && (flags & AMEND_MSG))) && | |
29fda24d | 1062 | read_env_script(&cmd.env)) { |
34bec2c4 | 1063 | const char *gpg_opt = gpg_sign_opt_quoted(opts); |
a1c75762 | 1064 | |
34bec2c4 AG |
1065 | return error(_(staged_changes_advice), |
1066 | gpg_opt, gpg_opt); | |
b5a67045 JS |
1067 | } |
1068 | ||
d188a60d PW |
1069 | strvec_pushf(&cmd.env, GIT_REFLOG_ACTION "=%s", opts->reflog_message); |
1070 | ||
7573cec5 | 1071 | if (opts->committer_date_is_author_date) |
29fda24d | 1072 | strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s", |
9c31b19d JH |
1073 | opts->ignore_date ? |
1074 | "" : | |
b3193252 | 1075 | author_date_from_env(&cmd.env)); |
a3894aad | 1076 | if (opts->ignore_date) |
29fda24d | 1077 | strvec_push(&cmd.env, "GIT_AUTHOR_DATE="); |
7573cec5 | 1078 | |
c972bf4c | 1079 | strvec_push(&cmd.args, "commit"); |
043a4492 | 1080 | |
b92ff6e8 | 1081 | if (!(flags & VERIFY_MSG)) |
c972bf4c | 1082 | strvec_push(&cmd.args, "-n"); |
789b3eff | 1083 | if ((flags & AMEND_MSG)) |
c972bf4c | 1084 | strvec_push(&cmd.args, "--amend"); |
3bdd5522 | 1085 | if (opts->gpg_sign) |
c972bf4c | 1086 | strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign); |
cf0ad4d1 | 1087 | else |
c972bf4c | 1088 | strvec_push(&cmd.args, "--no-gpg-sign"); |
b5a67045 | 1089 | if (defmsg) |
c972bf4c | 1090 | strvec_pushl(&cmd.args, "-F", defmsg, NULL); |
dc4b5bc3 | 1091 | else if (!(flags & EDIT_MSG)) |
c972bf4c | 1092 | strvec_pushl(&cmd.args, "-C", "HEAD", NULL); |
789b3eff | 1093 | if ((flags & CLEANUP_MSG)) |
c972bf4c | 1094 | strvec_push(&cmd.args, "--cleanup=strip"); |
f7d42cee JS |
1095 | if ((flags & VERBATIM_MSG)) |
1096 | strvec_push(&cmd.args, "--cleanup=verbatim"); | |
789b3eff | 1097 | if ((flags & EDIT_MSG)) |
c972bf4c | 1098 | strvec_push(&cmd.args, "-e"); |
789b3eff | 1099 | else if (!(flags & CLEANUP_MSG) && |
0009426d | 1100 | !opts->signoff && !opts->record_origin && |
1a2b985f | 1101 | !opts->explicit_cleanup) |
c972bf4c | 1102 | strvec_push(&cmd.args, "--cleanup=verbatim"); |
b27cfb0d | 1103 | |
789b3eff | 1104 | if ((flags & ALLOW_EMPTY)) |
c972bf4c | 1105 | strvec_push(&cmd.args, "--allow-empty"); |
df478b74 | 1106 | |
a3ec9eaf | 1107 | if (!(flags & EDIT_MSG)) |
c972bf4c | 1108 | strvec_push(&cmd.args, "--allow-empty-message"); |
4bee9584 | 1109 | |
34bec2c4 AG |
1110 | if (is_rebase_i(opts) && !(flags & EDIT_MSG)) |
1111 | return run_command_silent_on_success(&cmd); | |
1112 | else | |
1113 | return run_command(&cmd); | |
b27cfb0d NH |
1114 | } |
1115 | ||
d0aaa46f PW |
1116 | static int rest_is_empty(const struct strbuf *sb, int start) |
1117 | { | |
1118 | int i, eol; | |
1119 | const char *nl; | |
1120 | ||
1121 | /* Check if the rest is just whitespace and Signed-off-by's. */ | |
1122 | for (i = start; i < sb->len; i++) { | |
1123 | nl = memchr(sb->buf + i, '\n', sb->len - i); | |
1124 | if (nl) | |
1125 | eol = nl - sb->buf; | |
1126 | else | |
1127 | eol = sb->len; | |
1128 | ||
1129 | if (strlen(sign_off_header) <= eol - i && | |
1130 | starts_with(sb->buf + i, sign_off_header)) { | |
1131 | i = eol; | |
1132 | continue; | |
1133 | } | |
1134 | while (i < eol) | |
1135 | if (!isspace(sb->buf[i++])) | |
1136 | return 0; | |
1137 | } | |
1138 | ||
1139 | return 1; | |
1140 | } | |
1141 | ||
f29cd862 DL |
1142 | void cleanup_message(struct strbuf *msgbuf, |
1143 | enum commit_msg_cleanup_mode cleanup_mode, int verbose) | |
1144 | { | |
1145 | if (verbose || /* Truncate the message just before the diff, if any. */ | |
1146 | cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) | |
1147 | strbuf_setlen(msgbuf, wt_status_locate_end(msgbuf->buf, msgbuf->len)); | |
1148 | if (cleanup_mode != COMMIT_MSG_CLEANUP_NONE) | |
1149 | strbuf_stripspace(msgbuf, cleanup_mode == COMMIT_MSG_CLEANUP_ALL); | |
1150 | } | |
1151 | ||
d0aaa46f PW |
1152 | /* |
1153 | * Find out if the message in the strbuf contains only whitespace and | |
1154 | * Signed-off-by lines. | |
1155 | */ | |
1156 | int message_is_empty(const struct strbuf *sb, | |
1157 | enum commit_msg_cleanup_mode cleanup_mode) | |
1158 | { | |
1159 | if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len) | |
1160 | return 0; | |
1161 | return rest_is_empty(sb, 0); | |
1162 | } | |
1163 | ||
1164 | /* | |
1165 | * See if the user edited the message in the editor or left what | |
1166 | * was in the template intact | |
1167 | */ | |
1168 | int template_untouched(const struct strbuf *sb, const char *template_file, | |
1169 | enum commit_msg_cleanup_mode cleanup_mode) | |
1170 | { | |
1171 | struct strbuf tmpl = STRBUF_INIT; | |
1172 | const char *start; | |
1173 | ||
1174 | if (cleanup_mode == COMMIT_MSG_CLEANUP_NONE && sb->len) | |
1175 | return 0; | |
1176 | ||
1177 | if (!template_file || strbuf_read_file(&tmpl, template_file, 0) <= 0) | |
1178 | return 0; | |
1179 | ||
1180 | strbuf_stripspace(&tmpl, cleanup_mode == COMMIT_MSG_CLEANUP_ALL); | |
1181 | if (!skip_prefix(sb->buf, tmpl.buf, &start)) | |
1182 | start = sb->buf; | |
1183 | strbuf_release(&tmpl); | |
1184 | return rest_is_empty(sb, start - sb->buf); | |
1185 | } | |
1186 | ||
0505d604 PW |
1187 | int update_head_with_reflog(const struct commit *old_head, |
1188 | const struct object_id *new_head, | |
1189 | const char *action, const struct strbuf *msg, | |
1190 | struct strbuf *err) | |
1191 | { | |
1192 | struct ref_transaction *transaction; | |
1193 | struct strbuf sb = STRBUF_INIT; | |
1194 | const char *nl; | |
1195 | int ret = 0; | |
1196 | ||
1197 | if (action) { | |
1198 | strbuf_addstr(&sb, action); | |
1199 | strbuf_addstr(&sb, ": "); | |
1200 | } | |
1201 | ||
1202 | nl = strchr(msg->buf, '\n'); | |
1203 | if (nl) { | |
1204 | strbuf_add(&sb, msg->buf, nl + 1 - msg->buf); | |
1205 | } else { | |
1206 | strbuf_addbuf(&sb, msg); | |
1207 | strbuf_addch(&sb, '\n'); | |
1208 | } | |
1209 | ||
1210 | transaction = ref_transaction_begin(err); | |
1211 | if (!transaction || | |
1212 | ref_transaction_update(transaction, "HEAD", new_head, | |
14228447 | 1213 | old_head ? &old_head->object.oid : null_oid(), |
0505d604 PW |
1214 | 0, sb.buf, err) || |
1215 | ref_transaction_commit(transaction, err)) { | |
1216 | ret = -1; | |
1217 | } | |
1218 | ref_transaction_free(transaction); | |
1219 | strbuf_release(&sb); | |
1220 | ||
1221 | return ret; | |
1222 | } | |
1223 | ||
a87a6f3c PW |
1224 | static int run_rewrite_hook(const struct object_id *oldoid, |
1225 | const struct object_id *newoid) | |
1226 | { | |
1227 | struct child_process proc = CHILD_PROCESS_INIT; | |
a87a6f3c PW |
1228 | int code; |
1229 | struct strbuf sb = STRBUF_INIT; | |
2b709893 | 1230 | const char *hook_path = find_hook("post-rewrite"); |
a87a6f3c | 1231 | |
2b709893 | 1232 | if (!hook_path) |
a87a6f3c PW |
1233 | return 0; |
1234 | ||
2b709893 | 1235 | strvec_pushl(&proc.args, hook_path, "amend", NULL); |
a87a6f3c PW |
1236 | proc.in = -1; |
1237 | proc.stdout_to_stderr = 1; | |
6206286e | 1238 | proc.trace2_hook_name = "post-rewrite"; |
a87a6f3c PW |
1239 | |
1240 | code = start_command(&proc); | |
1241 | if (code) | |
1242 | return code; | |
1243 | strbuf_addf(&sb, "%s %s\n", oid_to_hex(oldoid), oid_to_hex(newoid)); | |
1244 | sigchain_push(SIGPIPE, SIG_IGN); | |
1245 | write_in_full(proc.in, sb.buf, sb.len); | |
1246 | close(proc.in); | |
1247 | strbuf_release(&sb); | |
1248 | sigchain_pop(SIGPIPE); | |
1249 | return finish_command(&proc); | |
1250 | } | |
1251 | ||
1d18d758 NTND |
1252 | void commit_post_rewrite(struct repository *r, |
1253 | const struct commit *old_head, | |
a87a6f3c PW |
1254 | const struct object_id *new_head) |
1255 | { | |
1256 | struct notes_rewrite_cfg *cfg; | |
1257 | ||
1258 | cfg = init_copy_notes_for_rewrite("amend"); | |
1259 | if (cfg) { | |
1260 | /* we are amending, so old_head is not NULL */ | |
1261 | copy_note_for_rewrite(cfg, &old_head->object.oid, new_head); | |
1d18d758 | 1262 | finish_copy_notes_for_rewrite(r, cfg, "Notes added by 'git commit --amend'"); |
a87a6f3c PW |
1263 | } |
1264 | run_rewrite_hook(&old_head->object.oid, new_head); | |
1265 | } | |
1266 | ||
f11c9580 NTND |
1267 | static int run_prepare_commit_msg_hook(struct repository *r, |
1268 | struct strbuf *msg, | |
1269 | const char *commit) | |
66618a50 | 1270 | { |
49697cb7 PW |
1271 | int ret = 0; |
1272 | const char *name, *arg1 = NULL, *arg2 = NULL; | |
66618a50 PW |
1273 | |
1274 | name = git_path_commit_editmsg(); | |
1275 | if (write_message(msg->buf, msg->len, name, 0)) | |
1276 | return -1; | |
1277 | ||
49697cb7 PW |
1278 | if (commit) { |
1279 | arg1 = "commit"; | |
1280 | arg2 = commit; | |
1281 | } else { | |
1282 | arg1 = "message"; | |
1283 | } | |
a8cc5943 | 1284 | if (run_commit_hook(0, r->index_file, NULL, "prepare-commit-msg", name, |
49697cb7 | 1285 | arg1, arg2, NULL)) |
66618a50 | 1286 | ret = error(_("'prepare-commit-msg' hook failed")); |
66618a50 PW |
1287 | |
1288 | return ret; | |
1289 | } | |
1290 | ||
e47c6caf PW |
1291 | static const char implicit_ident_advice_noconfig[] = |
1292 | N_("Your name and email address were configured automatically based\n" | |
1293 | "on your username and hostname. Please check that they are accurate.\n" | |
1294 | "You can suppress this message by setting them explicitly. Run the\n" | |
1295 | "following command and follow the instructions in your editor to edit\n" | |
1296 | "your configuration file:\n" | |
1297 | "\n" | |
1298 | " git config --global --edit\n" | |
1299 | "\n" | |
1300 | "After doing this, you may fix the identity used for this commit with:\n" | |
1301 | "\n" | |
1302 | " git commit --amend --reset-author\n"); | |
1303 | ||
1304 | static const char implicit_ident_advice_config[] = | |
1305 | N_("Your name and email address were configured automatically based\n" | |
1306 | "on your username and hostname. Please check that they are accurate.\n" | |
1307 | "You can suppress this message by setting them explicitly:\n" | |
1308 | "\n" | |
1309 | " git config --global user.name \"Your Name\"\n" | |
1310 | " git config --global user.email you@example.com\n" | |
1311 | "\n" | |
1312 | "After doing this, you may fix the identity used for this commit with:\n" | |
1313 | "\n" | |
1314 | " git commit --amend --reset-author\n"); | |
1315 | ||
1316 | static const char *implicit_ident_advice(void) | |
1317 | { | |
a03b097d | 1318 | char *user_config = interpolate_path("~/.gitconfig", 0); |
e47c6caf PW |
1319 | char *xdg_config = xdg_config_home("config"); |
1320 | int config_exists = file_exists(user_config) || file_exists(xdg_config); | |
1321 | ||
1322 | free(user_config); | |
1323 | free(xdg_config); | |
1324 | ||
1325 | if (config_exists) | |
1326 | return _(implicit_ident_advice_config); | |
1327 | else | |
1328 | return _(implicit_ident_advice_noconfig); | |
1329 | ||
1330 | } | |
1331 | ||
f11c9580 NTND |
1332 | void print_commit_summary(struct repository *r, |
1333 | const char *prefix, | |
1334 | const struct object_id *oid, | |
e47c6caf PW |
1335 | unsigned int flags) |
1336 | { | |
1337 | struct rev_info rev; | |
1338 | struct commit *commit; | |
1339 | struct strbuf format = STRBUF_INIT; | |
1340 | const char *head; | |
1341 | struct pretty_print_context pctx = {0}; | |
1342 | struct strbuf author_ident = STRBUF_INIT; | |
1343 | struct strbuf committer_ident = STRBUF_INIT; | |
ed90f041 | 1344 | struct ref_store *refs; |
e47c6caf | 1345 | |
f11c9580 | 1346 | commit = lookup_commit(r, oid); |
e47c6caf PW |
1347 | if (!commit) |
1348 | die(_("couldn't look up newly created commit")); | |
4a93b899 | 1349 | if (repo_parse_commit(r, commit)) |
e47c6caf PW |
1350 | die(_("could not parse newly created commit")); |
1351 | ||
1352 | strbuf_addstr(&format, "format:%h] %s"); | |
1353 | ||
4a93b899 ÆAB |
1354 | repo_format_commit_message(r, commit, "%an <%ae>", &author_ident, |
1355 | &pctx); | |
1356 | repo_format_commit_message(r, commit, "%cn <%ce>", &committer_ident, | |
1357 | &pctx); | |
e47c6caf PW |
1358 | if (strbuf_cmp(&author_ident, &committer_ident)) { |
1359 | strbuf_addstr(&format, "\n Author: "); | |
1360 | strbuf_addbuf_percentquote(&format, &author_ident); | |
1361 | } | |
1362 | if (flags & SUMMARY_SHOW_AUTHOR_DATE) { | |
1363 | struct strbuf date = STRBUF_INIT; | |
1364 | ||
4a93b899 | 1365 | repo_format_commit_message(r, commit, "%ad", &date, &pctx); |
e47c6caf PW |
1366 | strbuf_addstr(&format, "\n Date: "); |
1367 | strbuf_addbuf_percentquote(&format, &date); | |
1368 | strbuf_release(&date); | |
1369 | } | |
1370 | if (!committer_ident_sufficiently_given()) { | |
1371 | strbuf_addstr(&format, "\n Committer: "); | |
1372 | strbuf_addbuf_percentquote(&format, &committer_ident); | |
ed9bff08 | 1373 | if (advice_enabled(ADVICE_IMPLICIT_IDENTITY)) { |
e47c6caf PW |
1374 | strbuf_addch(&format, '\n'); |
1375 | strbuf_addstr(&format, implicit_ident_advice()); | |
1376 | } | |
1377 | } | |
1378 | strbuf_release(&author_ident); | |
1379 | strbuf_release(&committer_ident); | |
1380 | ||
f11c9580 | 1381 | repo_init_revisions(r, &rev, prefix); |
e47c6caf PW |
1382 | setup_revisions(0, NULL, &rev, NULL); |
1383 | ||
1384 | rev.diff = 1; | |
1385 | rev.diffopt.output_format = | |
1386 | DIFF_FORMAT_SHORTSTAT | DIFF_FORMAT_SUMMARY; | |
1387 | ||
1388 | rev.verbose_header = 1; | |
1389 | rev.show_root_diff = 1; | |
1390 | get_commit_format(format.buf, &rev); | |
1391 | rev.always_show_header = 0; | |
0f57f731 | 1392 | rev.diffopt.detect_rename = DIFF_DETECT_RENAME; |
e47c6caf PW |
1393 | diff_setup_done(&rev.diffopt); |
1394 | ||
4a93b899 | 1395 | refs = get_main_ref_store(r); |
ce14de03 | 1396 | head = refs_resolve_ref_unsafe(refs, "HEAD", 0, NULL, NULL); |
09444e74 ÆAB |
1397 | if (!head) |
1398 | die(_("unable to resolve HEAD after creating commit")); | |
e47c6caf PW |
1399 | if (!strcmp(head, "HEAD")) |
1400 | head = _("detached HEAD"); | |
1401 | else | |
1402 | skip_prefix(head, "refs/heads/", &head); | |
1403 | printf("[%s%s ", head, (flags & SUMMARY_INITIAL_COMMIT) ? | |
1404 | _(" (root-commit)") : ""); | |
1405 | ||
1406 | if (!log_tree_commit(&rev, commit)) { | |
1407 | rev.always_show_header = 1; | |
1408 | rev.use_terminator = 1; | |
1409 | log_tree_commit(&rev, commit); | |
1410 | } | |
1411 | ||
2108fe4a | 1412 | release_revisions(&rev); |
e47c6caf PW |
1413 | strbuf_release(&format); |
1414 | } | |
1415 | ||
005af339 | 1416 | static int parse_head(struct repository *r, struct commit **head) |
356ee465 PW |
1417 | { |
1418 | struct commit *current_head; | |
1419 | struct object_id oid; | |
1420 | ||
4a93b899 | 1421 | if (repo_get_oid(r, "HEAD", &oid)) { |
356ee465 PW |
1422 | current_head = NULL; |
1423 | } else { | |
005af339 | 1424 | current_head = lookup_commit_reference(r, &oid); |
356ee465 PW |
1425 | if (!current_head) |
1426 | return error(_("could not parse HEAD")); | |
9001dc2a | 1427 | if (!oideq(&oid, ¤t_head->object.oid)) { |
356ee465 PW |
1428 | warning(_("HEAD %s is not a commit!"), |
1429 | oid_to_hex(&oid)); | |
1430 | } | |
4a93b899 | 1431 | if (repo_parse_commit(r, current_head)) |
356ee465 PW |
1432 | return error(_("could not parse HEAD commit")); |
1433 | } | |
1434 | *head = current_head; | |
1435 | ||
1436 | return 0; | |
1437 | } | |
1438 | ||
1439 | /* | |
1440 | * Try to commit without forking 'git commit'. In some cases we need | |
1441 | * to run 'git commit' to display an error message | |
1442 | * | |
1443 | * Returns: | |
1444 | * -1 - error unable to commit | |
1445 | * 0 - success | |
1446 | * 1 - run 'git commit' | |
1447 | */ | |
f11c9580 NTND |
1448 | static int try_to_commit(struct repository *r, |
1449 | struct strbuf *msg, const char *author, | |
356ee465 PW |
1450 | struct replay_opts *opts, unsigned int flags, |
1451 | struct object_id *oid) | |
1452 | { | |
1453 | struct object_id tree; | |
b0a31861 | 1454 | struct commit *current_head = NULL; |
356ee465 PW |
1455 | struct commit_list *parents = NULL; |
1456 | struct commit_extra_header *extra = NULL; | |
1457 | struct strbuf err = STRBUF_INIT; | |
66618a50 | 1458 | struct strbuf commit_msg = STRBUF_INIT; |
4d924528 | 1459 | char *amend_author = NULL; |
7573cec5 | 1460 | const char *committer = NULL; |
66618a50 | 1461 | const char *hook_commit = NULL; |
356ee465 PW |
1462 | enum commit_msg_cleanup_mode cleanup; |
1463 | int res = 0; | |
1464 | ||
f7d42cee JS |
1465 | if ((flags & CLEANUP_MSG) && (flags & VERBATIM_MSG)) |
1466 | BUG("CLEANUP_MSG and VERBATIM_MSG are mutually exclusive"); | |
1467 | ||
005af339 | 1468 | if (parse_head(r, ¤t_head)) |
356ee465 | 1469 | return -1; |
4d924528 | 1470 | |
356ee465 | 1471 | if (flags & AMEND_MSG) { |
42d4e1d1 | 1472 | const char *exclude_gpgsig[] = { "gpgsig", "gpgsig-sha256", NULL }; |
356ee465 | 1473 | const char *out_enc = get_commit_output_encoding(); |
4a93b899 ÆAB |
1474 | const char *message = repo_logmsg_reencode(r, current_head, |
1475 | NULL, out_enc); | |
356ee465 PW |
1476 | |
1477 | if (!msg) { | |
1478 | const char *orig_message = NULL; | |
1479 | ||
1480 | find_commit_subject(message, &orig_message); | |
66618a50 | 1481 | msg = &commit_msg; |
356ee465 | 1482 | strbuf_addstr(msg, orig_message); |
66618a50 | 1483 | hook_commit = "HEAD"; |
356ee465 | 1484 | } |
4d924528 | 1485 | author = amend_author = get_author(message); |
4a93b899 | 1486 | repo_unuse_commit_buffer(r, current_head, |
ecb5091f | 1487 | message); |
356ee465 PW |
1488 | if (!author) { |
1489 | res = error(_("unable to parse commit author")); | |
1490 | goto out; | |
1491 | } | |
1492 | parents = copy_commit_list(current_head->parents); | |
1493 | extra = read_commit_extra_headers(current_head, exclude_gpgsig); | |
b0a31861 PW |
1494 | } else if (current_head && |
1495 | (!(flags & CREATE_ROOT_COMMIT) || (flags & AMEND_MSG))) { | |
356ee465 PW |
1496 | commit_list_insert(current_head, &parents); |
1497 | } | |
1498 | ||
f11c9580 | 1499 | if (write_index_as_tree(&tree, r->index, r->index_file, 0, NULL)) { |
356ee465 PW |
1500 | res = error(_("git write-tree failed to write a tree")); |
1501 | goto out; | |
1502 | } | |
1503 | ||
2d05ef27 PW |
1504 | if (!(flags & ALLOW_EMPTY)) { |
1505 | struct commit *first_parent = current_head; | |
1506 | ||
1507 | if (flags & AMEND_MSG) { | |
1508 | if (current_head->parents) { | |
1509 | first_parent = current_head->parents->item; | |
1510 | if (repo_parse_commit(r, first_parent)) { | |
1511 | res = error(_("could not parse HEAD commit")); | |
1512 | goto out; | |
1513 | } | |
1514 | } else { | |
1515 | first_parent = NULL; | |
1516 | } | |
1517 | } | |
1518 | if (oideq(first_parent | |
1519 | ? get_commit_tree_oid(first_parent) | |
1520 | : the_hash_algo->empty_tree, | |
1521 | &tree)) { | |
1522 | res = 1; /* run 'git commit' to display error message */ | |
1523 | goto out; | |
1524 | } | |
356ee465 PW |
1525 | } |
1526 | ||
07a348e7 | 1527 | if (hook_exists("prepare-commit-msg")) { |
f11c9580 | 1528 | res = run_prepare_commit_msg_hook(r, msg, hook_commit); |
66618a50 PW |
1529 | if (res) |
1530 | goto out; | |
1531 | if (strbuf_read_file(&commit_msg, git_path_commit_editmsg(), | |
1532 | 2048) < 0) { | |
1533 | res = error_errno(_("unable to read commit message " | |
1534 | "from '%s'"), | |
1535 | git_path_commit_editmsg()); | |
1536 | goto out; | |
1537 | } | |
1538 | msg = &commit_msg; | |
1539 | } | |
1540 | ||
d74f3e58 PW |
1541 | if (flags & CLEANUP_MSG) |
1542 | cleanup = COMMIT_MSG_CLEANUP_ALL; | |
f7d42cee JS |
1543 | else if (flags & VERBATIM_MSG) |
1544 | cleanup = COMMIT_MSG_CLEANUP_NONE; | |
d74f3e58 PW |
1545 | else if ((opts->signoff || opts->record_origin) && |
1546 | !opts->explicit_cleanup) | |
1547 | cleanup = COMMIT_MSG_CLEANUP_SPACE; | |
1548 | else | |
1549 | cleanup = opts->default_msg_cleanup; | |
66618a50 PW |
1550 | |
1551 | if (cleanup != COMMIT_MSG_CLEANUP_NONE) | |
1552 | strbuf_stripspace(msg, cleanup == COMMIT_MSG_CLEANUP_ALL); | |
a3ec9eaf | 1553 | if ((flags & EDIT_MSG) && message_is_empty(msg, cleanup)) { |
66618a50 PW |
1554 | res = 1; /* run 'git commit' to display error message */ |
1555 | goto out; | |
1556 | } | |
1557 | ||
7573cec5 PW |
1558 | if (opts->committer_date_is_author_date) { |
1559 | struct ident_split id; | |
1560 | struct strbuf date = STRBUF_INIT; | |
1561 | ||
a3894aad PW |
1562 | if (!opts->ignore_date) { |
1563 | if (split_ident_line(&id, author, (int)strlen(author)) < 0) { | |
1564 | res = error(_("invalid author identity '%s'"), | |
1565 | author); | |
1566 | goto out; | |
1567 | } | |
1568 | if (!id.date_begin) { | |
1569 | res = error(_( | |
1570 | "corrupt author: missing date information")); | |
1571 | goto out; | |
1572 | } | |
1573 | strbuf_addf(&date, "@%.*s %.*s", | |
1574 | (int)(id.date_end - id.date_begin), | |
1575 | id.date_begin, | |
1576 | (int)(id.tz_end - id.tz_begin), | |
1577 | id.tz_begin); | |
1578 | } else { | |
1579 | reset_ident_date(); | |
7573cec5 | 1580 | } |
2020451c JK |
1581 | committer = fmt_ident(getenv("GIT_COMMITTER_NAME"), |
1582 | getenv("GIT_COMMITTER_EMAIL"), | |
a3894aad PW |
1583 | WANT_COMMITTER_IDENT, |
1584 | opts->ignore_date ? NULL : date.buf, | |
7573cec5 PW |
1585 | IDENT_STRICT); |
1586 | strbuf_release(&date); | |
1587 | } else { | |
1588 | reset_ident_date(); | |
1589 | } | |
12f7babd | 1590 | |
a3894aad PW |
1591 | if (opts->ignore_date) { |
1592 | struct ident_split id; | |
1593 | char *name, *email; | |
12f7babd | 1594 | |
a3894aad PW |
1595 | if (split_ident_line(&id, author, strlen(author)) < 0) { |
1596 | error(_("invalid author identity '%s'"), author); | |
1597 | goto out; | |
1598 | } | |
1599 | name = xmemdupz(id.name_begin, id.name_end - id.name_begin); | |
1600 | email = xmemdupz(id.mail_begin, id.mail_end - id.mail_begin); | |
1601 | author = fmt_ident(name, email, WANT_AUTHOR_IDENT, NULL, | |
1602 | IDENT_STRICT); | |
1603 | free(name); | |
1604 | free(email); | |
1605 | } | |
1606 | ||
e8cbe211 | 1607 | if (commit_tree_extended(msg->buf, msg->len, &tree, parents, oid, |
7573cec5 | 1608 | author, committer, opts->gpg_sign, extra)) { |
356ee465 PW |
1609 | res = error(_("failed to write commit object")); |
1610 | goto out; | |
1611 | } | |
1612 | ||
d188a60d PW |
1613 | if (update_head_with_reflog(current_head, oid, opts->reflog_message, |
1614 | msg, &err)) { | |
356ee465 PW |
1615 | res = error("%s", err.buf); |
1616 | goto out; | |
1617 | } | |
1618 | ||
a8cc5943 | 1619 | run_commit_hook(0, r->index_file, NULL, "post-commit", NULL); |
356ee465 | 1620 | if (flags & AMEND_MSG) |
1d18d758 | 1621 | commit_post_rewrite(r, current_head, oid); |
356ee465 PW |
1622 | |
1623 | out: | |
1624 | free_commit_extra_headers(extra); | |
1625 | strbuf_release(&err); | |
66618a50 | 1626 | strbuf_release(&commit_msg); |
4d924528 | 1627 | free(amend_author); |
356ee465 PW |
1628 | |
1629 | return res; | |
1630 | } | |
1631 | ||
430b75f7 PW |
1632 | static int write_rebase_head(struct object_id *oid) |
1633 | { | |
1634 | if (update_ref("rebase", "REBASE_HEAD", oid, | |
1635 | NULL, REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) | |
1636 | return error(_("could not update %s"), "REBASE_HEAD"); | |
1637 | ||
1638 | return 0; | |
1639 | } | |
1640 | ||
f11c9580 NTND |
1641 | static int do_commit(struct repository *r, |
1642 | const char *msg_file, const char *author, | |
430b75f7 PW |
1643 | struct replay_opts *opts, unsigned int flags, |
1644 | struct object_id *oid) | |
356ee465 PW |
1645 | { |
1646 | int res = 1; | |
1647 | ||
b0a31861 | 1648 | if (!(flags & EDIT_MSG) && !(flags & VERIFY_MSG)) { |
356ee465 PW |
1649 | struct object_id oid; |
1650 | struct strbuf sb = STRBUF_INIT; | |
1651 | ||
1652 | if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0) | |
1653 | return error_errno(_("unable to read commit message " | |
1654 | "from '%s'"), | |
1655 | msg_file); | |
1656 | ||
f11c9580 NTND |
1657 | res = try_to_commit(r, msg_file ? &sb : NULL, |
1658 | author, opts, flags, &oid); | |
356ee465 PW |
1659 | strbuf_release(&sb); |
1660 | if (!res) { | |
c8e4159e HWN |
1661 | refs_delete_ref(get_main_ref_store(r), "", |
1662 | "CHERRY_PICK_HEAD", NULL, 0); | |
f11c9580 | 1663 | unlink(git_path_merge_msg(r)); |
356ee465 | 1664 | if (!is_rebase_i(opts)) |
f11c9580 | 1665 | print_commit_summary(r, NULL, &oid, |
356ee465 PW |
1666 | SUMMARY_SHOW_AUTHOR_DATE); |
1667 | return res; | |
1668 | } | |
1669 | } | |
430b75f7 PW |
1670 | if (res == 1) { |
1671 | if (is_rebase_i(opts) && oid) | |
1672 | if (write_rebase_head(oid)) | |
1673 | return -1; | |
20f4b044 | 1674 | return run_git_commit(msg_file, opts, flags); |
430b75f7 | 1675 | } |
356ee465 PW |
1676 | |
1677 | return res; | |
1678 | } | |
1679 | ||
b27cfb0d NH |
1680 | static int is_original_commit_empty(struct commit *commit) |
1681 | { | |
092bbcdf | 1682 | const struct object_id *ptree_oid; |
b27cfb0d | 1683 | |
ecb5091f | 1684 | if (repo_parse_commit(the_repository, commit)) |
aee42e1f | 1685 | return error(_("could not parse commit %s"), |
f2fd0760 | 1686 | oid_to_hex(&commit->object.oid)); |
b27cfb0d NH |
1687 | if (commit->parents) { |
1688 | struct commit *parent = commit->parents->item; | |
ecb5091f | 1689 | if (repo_parse_commit(the_repository, parent)) |
aee42e1f | 1690 | return error(_("could not parse parent commit %s"), |
f2fd0760 | 1691 | oid_to_hex(&parent->object.oid)); |
2e27bd77 | 1692 | ptree_oid = get_commit_tree_oid(parent); |
b27cfb0d | 1693 | } else { |
eb0ccfd7 | 1694 | ptree_oid = the_hash_algo->empty_tree; /* commit is root */ |
043a4492 | 1695 | } |
043a4492 | 1696 | |
4a7e27e9 | 1697 | return oideq(ptree_oid, get_commit_tree_oid(commit)); |
043a4492 RR |
1698 | } |
1699 | ||
ac2b0e8f | 1700 | /* |
e98c4269 EN |
1701 | * Should empty commits be allowed? Return status: |
1702 | * <0: Error in is_index_unchanged(r) or is_original_commit_empty(commit) | |
1703 | * 0: Halt on empty commit | |
1704 | * 1: Allow empty commit | |
1705 | * 2: Drop empty commit | |
ac2b0e8f | 1706 | */ |
f11c9580 NTND |
1707 | static int allow_empty(struct repository *r, |
1708 | struct replay_opts *opts, | |
1709 | struct commit *commit) | |
ac2b0e8f | 1710 | { |
d48e5e21 | 1711 | int index_unchanged, originally_empty; |
ac2b0e8f JH |
1712 | |
1713 | /* | |
e98c4269 | 1714 | * Four cases: |
ac2b0e8f JH |
1715 | * |
1716 | * (1) we do not allow empty at all and error out. | |
1717 | * | |
e98c4269 EN |
1718 | * (2) we allow ones that were initially empty, and |
1719 | * just drop the ones that become empty | |
ac2b0e8f | 1720 | * |
e98c4269 EN |
1721 | * (3) we allow ones that were initially empty, but |
1722 | * halt for the ones that become empty; | |
1723 | * | |
1724 | * (4) we allow both. | |
ac2b0e8f JH |
1725 | */ |
1726 | if (!opts->allow_empty) | |
1727 | return 0; /* let "git commit" barf as necessary */ | |
1728 | ||
005af339 | 1729 | index_unchanged = is_index_unchanged(r); |
ac2b0e8f JH |
1730 | if (index_unchanged < 0) |
1731 | return index_unchanged; | |
1732 | if (!index_unchanged) | |
1733 | return 0; /* we do not have to say --allow-empty */ | |
1734 | ||
1735 | if (opts->keep_redundant_commits) | |
1736 | return 1; | |
1737 | ||
d48e5e21 EN |
1738 | originally_empty = is_original_commit_empty(commit); |
1739 | if (originally_empty < 0) | |
1740 | return originally_empty; | |
e98c4269 | 1741 | if (originally_empty) |
ac2b0e8f | 1742 | return 1; |
e98c4269 EN |
1743 | else if (opts->drop_redundant_commits) |
1744 | return 2; | |
1745 | else | |
1746 | return 0; | |
ac2b0e8f JH |
1747 | } |
1748 | ||
414697a9 JS |
1749 | static struct { |
1750 | char c; | |
1751 | const char *str; | |
1752 | } todo_command_info[] = { | |
d7ce9a22 DS |
1753 | [TODO_PICK] = { 'p', "pick" }, |
1754 | [TODO_REVERT] = { 0, "revert" }, | |
1755 | [TODO_EDIT] = { 'e', "edit" }, | |
1756 | [TODO_REWORD] = { 'r', "reword" }, | |
1757 | [TODO_FIXUP] = { 'f', "fixup" }, | |
1758 | [TODO_SQUASH] = { 's', "squash" }, | |
1759 | [TODO_EXEC] = { 'x', "exec" }, | |
1760 | [TODO_BREAK] = { 'b', "break" }, | |
1761 | [TODO_LABEL] = { 'l', "label" }, | |
1762 | [TODO_RESET] = { 't', "reset" }, | |
1763 | [TODO_MERGE] = { 'm', "merge" }, | |
a97d7916 | 1764 | [TODO_UPDATE_REF] = { 'u', "update-ref" }, |
d7ce9a22 DS |
1765 | [TODO_NOOP] = { 0, "noop" }, |
1766 | [TODO_DROP] = { 'd', "drop" }, | |
1767 | [TODO_COMMENT] = { 0, NULL }, | |
004fefa7 JS |
1768 | }; |
1769 | ||
1770 | static const char *command_to_string(const enum todo_command command) | |
1771 | { | |
ac191470 | 1772 | if (command < TODO_COMMENT) |
414697a9 | 1773 | return todo_command_info[command].str; |
02127c63 | 1774 | die(_("unknown command: %d"), command); |
004fefa7 JS |
1775 | } |
1776 | ||
ee5462d6 | 1777 | static char command_to_char(const enum todo_command command) |
d8ae6c84 | 1778 | { |
68e7090f | 1779 | if (command < TODO_COMMENT) |
d8ae6c84 LB |
1780 | return todo_command_info[command].c; |
1781 | return comment_line_char; | |
1782 | } | |
1783 | ||
25c43667 JS |
1784 | static int is_noop(const enum todo_command command) |
1785 | { | |
b3fdd581 | 1786 | return TODO_NOOP <= command; |
25c43667 | 1787 | } |
004fefa7 | 1788 | |
6e98de72 JS |
1789 | static int is_fixup(enum todo_command command) |
1790 | { | |
1791 | return command == TODO_FIXUP || command == TODO_SQUASH; | |
1792 | } | |
1793 | ||
d87d48b2 JS |
1794 | /* Does this command create a (non-merge) commit? */ |
1795 | static int is_pick_or_similar(enum todo_command command) | |
1796 | { | |
1797 | switch (command) { | |
1798 | case TODO_PICK: | |
1799 | case TODO_REVERT: | |
1800 | case TODO_EDIT: | |
1801 | case TODO_REWORD: | |
1802 | case TODO_FIXUP: | |
1803 | case TODO_SQUASH: | |
1804 | return 1; | |
1805 | default: | |
1806 | return 0; | |
1807 | } | |
1808 | } | |
1809 | ||
9e3cebd9 CM |
1810 | enum todo_item_flags { |
1811 | TODO_EDIT_MERGE_MSG = (1 << 0), | |
1812 | TODO_REPLACE_FIXUP_MSG = (1 << 1), | |
1813 | TODO_EDIT_FIXUP_MSG = (1 << 2), | |
1814 | }; | |
1815 | ||
71ee81cd CM |
1816 | static const char first_commit_msg_str[] = N_("This is the 1st commit message:"); |
1817 | static const char nth_commit_msg_fmt[] = N_("This is the commit message #%d:"); | |
9e3cebd9 | 1818 | static const char skip_first_commit_msg_str[] = N_("The 1st commit message will be skipped:"); |
71ee81cd CM |
1819 | static const char skip_nth_commit_msg_fmt[] = N_("The commit message #%d will be skipped:"); |
1820 | static const char combined_commit_msg_fmt[] = N_("This is a combination of %d commits."); | |
1821 | ||
1f969601 | 1822 | static int is_fixup_flag(enum todo_command command, unsigned flag) |
498bb5b8 | 1823 | { |
9e3cebd9 CM |
1824 | return command == TODO_FIXUP && ((flag & TODO_REPLACE_FIXUP_MSG) || |
1825 | (flag & TODO_EDIT_FIXUP_MSG)); | |
1826 | } | |
7cdb9682 | 1827 | |
9e3cebd9 CM |
1828 | /* |
1829 | * Wrapper around strbuf_add_commented_lines() which avoids double | |
1830 | * commenting commit subjects. | |
1831 | */ | |
1832 | static void add_commented_lines(struct strbuf *buf, const void *str, size_t len) | |
1833 | { | |
1834 | const char *s = str; | |
1835 | while (len > 0 && s[0] == comment_line_char) { | |
1836 | size_t count; | |
1837 | const char *n = memchr(s, '\n', len); | |
1838 | if (!n) | |
1839 | count = len; | |
1840 | else | |
1841 | count = n - s + 1; | |
1842 | strbuf_add(buf, s, count); | |
1843 | s += count; | |
1844 | len -= count; | |
1845 | } | |
1846 | strbuf_add_commented_lines(buf, s, len); | |
1847 | } | |
1848 | ||
1849 | /* Does the current fixup chain contain a squash command? */ | |
1850 | static int seen_squash(struct replay_opts *opts) | |
1851 | { | |
1852 | return starts_with(opts->current_fixups.buf, "squash") || | |
1853 | strstr(opts->current_fixups.buf, "\nsquash"); | |
1854 | } | |
1855 | ||
1856 | static void update_comment_bufs(struct strbuf *buf1, struct strbuf *buf2, int n) | |
1857 | { | |
1858 | strbuf_setlen(buf1, 2); | |
1859 | strbuf_addf(buf1, _(nth_commit_msg_fmt), n); | |
1860 | strbuf_addch(buf1, '\n'); | |
1861 | strbuf_setlen(buf2, 2); | |
1862 | strbuf_addf(buf2, _(skip_nth_commit_msg_fmt), n); | |
1863 | strbuf_addch(buf2, '\n'); | |
1864 | } | |
1865 | ||
1866 | /* | |
1867 | * Comment out any un-commented commit messages, updating the message comments | |
1868 | * to say they will be skipped but do not comment out the empty lines that | |
1869 | * surround commit messages and their comments. | |
1870 | */ | |
1871 | static void update_squash_message_for_fixup(struct strbuf *msg) | |
1872 | { | |
1873 | void (*copy_lines)(struct strbuf *, const void *, size_t) = strbuf_add; | |
1874 | struct strbuf buf1 = STRBUF_INIT, buf2 = STRBUF_INIT; | |
1875 | const char *s, *start; | |
1876 | char *orig_msg; | |
1877 | size_t orig_msg_len; | |
1878 | int i = 1; | |
1879 | ||
1880 | strbuf_addf(&buf1, "# %s\n", _(first_commit_msg_str)); | |
1881 | strbuf_addf(&buf2, "# %s\n", _(skip_first_commit_msg_str)); | |
1882 | s = start = orig_msg = strbuf_detach(msg, &orig_msg_len); | |
1883 | while (s) { | |
1884 | const char *next; | |
1885 | size_t off; | |
1886 | if (skip_prefix(s, buf1.buf, &next)) { | |
1887 | /* | |
1888 | * Copy the last message, preserving the blank line | |
1889 | * preceding the current line | |
1890 | */ | |
1891 | off = (s > start + 1 && s[-2] == '\n') ? 1 : 0; | |
1892 | copy_lines(msg, start, s - start - off); | |
1893 | if (off) | |
1894 | strbuf_addch(msg, '\n'); | |
1895 | /* | |
1896 | * The next message needs to be commented out but the | |
1897 | * message header is already commented out so just copy | |
1898 | * it and the blank line that follows it. | |
1899 | */ | |
1900 | strbuf_addbuf(msg, &buf2); | |
1901 | if (*next == '\n') | |
1902 | strbuf_addch(msg, *next++); | |
1903 | start = s = next; | |
1904 | copy_lines = add_commented_lines; | |
1905 | update_comment_bufs(&buf1, &buf2, ++i); | |
1906 | } else if (skip_prefix(s, buf2.buf, &next)) { | |
1907 | off = (s > start + 1 && s[-2] == '\n') ? 1 : 0; | |
1908 | copy_lines(msg, start, s - start - off); | |
1909 | start = s - off; | |
1910 | s = next; | |
1911 | copy_lines = strbuf_add; | |
1912 | update_comment_bufs(&buf1, &buf2, ++i); | |
1913 | } else { | |
1914 | s = strchr(s, '\n'); | |
1915 | if (s) | |
1916 | s++; | |
1917 | } | |
1918 | } | |
1919 | copy_lines(msg, start, orig_msg_len - (start - orig_msg)); | |
1920 | free(orig_msg); | |
1921 | strbuf_release(&buf1); | |
1922 | strbuf_release(&buf2); | |
1923 | } | |
1924 | ||
1925 | static int append_squash_message(struct strbuf *buf, const char *body, | |
1926 | enum todo_command command, struct replay_opts *opts, | |
a25314c1 | 1927 | unsigned flag) |
9e3cebd9 CM |
1928 | { |
1929 | const char *fixup_msg; | |
1930 | size_t commented_len = 0, fixup_off; | |
1931 | /* | |
1932 | * amend is non-interactive and not normally used with fixup! | |
1933 | * or squash! commits, so only comment out those subjects when | |
1934 | * squashing commit messages. | |
1935 | */ | |
1936 | if (starts_with(body, "amend!") || | |
1937 | ((command == TODO_SQUASH || seen_squash(opts)) && | |
1938 | (starts_with(body, "squash!") || starts_with(body, "fixup!")))) | |
6e0e2887 | 1939 | commented_len = commit_subject_length(body); |
9e3cebd9 | 1940 | |
498bb5b8 | 1941 | strbuf_addf(buf, "\n%c ", comment_line_char); |
71ee81cd | 1942 | strbuf_addf(buf, _(nth_commit_msg_fmt), |
498bb5b8 PW |
1943 | ++opts->current_fixup_count + 1); |
1944 | strbuf_addstr(buf, "\n\n"); | |
7cdb9682 | 1945 | strbuf_add_commented_lines(buf, body, commented_len); |
9e3cebd9 CM |
1946 | /* buf->buf may be reallocated so store an offset into the buffer */ |
1947 | fixup_off = buf->len; | |
7cdb9682 | 1948 | strbuf_addstr(buf, body + commented_len); |
9e3cebd9 CM |
1949 | |
1950 | /* fixup -C after squash behaves like squash */ | |
1f969601 | 1951 | if (is_fixup_flag(command, flag) && !seen_squash(opts)) { |
9e3cebd9 CM |
1952 | /* |
1953 | * We're replacing the commit message so we need to | |
1954 | * append the Signed-off-by: trailer if the user | |
1955 | * requested '--signoff'. | |
1956 | */ | |
1957 | if (opts->signoff) | |
1958 | append_signoff(buf, 0, 0); | |
1959 | ||
1960 | if ((command == TODO_FIXUP) && | |
1961 | (flag & TODO_REPLACE_FIXUP_MSG) && | |
1962 | (file_exists(rebase_path_fixup_msg()) || | |
1963 | !file_exists(rebase_path_squash_msg()))) { | |
1964 | fixup_msg = skip_blank_lines(buf->buf + fixup_off); | |
1965 | if (write_message(fixup_msg, strlen(fixup_msg), | |
1966 | rebase_path_fixup_msg(), 0) < 0) | |
1967 | return error(_("cannot write '%s'"), | |
1968 | rebase_path_fixup_msg()); | |
1969 | } else { | |
1970 | unlink(rebase_path_fixup_msg()); | |
1971 | } | |
1972 | } else { | |
1973 | unlink(rebase_path_fixup_msg()); | |
1974 | } | |
1975 | ||
1976 | return 0; | |
498bb5b8 PW |
1977 | } |
1978 | ||
005af339 NTND |
1979 | static int update_squash_messages(struct repository *r, |
1980 | enum todo_command command, | |
1981 | struct commit *commit, | |
9e3cebd9 | 1982 | struct replay_opts *opts, |
a25314c1 | 1983 | unsigned flag) |
6e98de72 JS |
1984 | { |
1985 | struct strbuf buf = STRBUF_INIT; | |
9e3cebd9 | 1986 | int res = 0; |
6e98de72 | 1987 | const char *message, *body; |
b3757442 | 1988 | const char *encoding = get_commit_output_encoding(); |
6e98de72 | 1989 | |
e12a7ef5 | 1990 | if (opts->current_fixup_count > 0) { |
6e98de72 | 1991 | struct strbuf header = STRBUF_INIT; |
e12a7ef5 | 1992 | char *eol; |
6e98de72 | 1993 | |
e12a7ef5 | 1994 | if (strbuf_read_file(&buf, rebase_path_squash_msg(), 9) <= 0) |
6e98de72 JS |
1995 | return error(_("could not read '%s'"), |
1996 | rebase_path_squash_msg()); | |
1997 | ||
e12a7ef5 JS |
1998 | eol = buf.buf[0] != comment_line_char ? |
1999 | buf.buf : strchrnul(buf.buf, '\n'); | |
6e98de72 JS |
2000 | |
2001 | strbuf_addf(&header, "%c ", comment_line_char); | |
71ee81cd | 2002 | strbuf_addf(&header, _(combined_commit_msg_fmt), |
e12a7ef5 | 2003 | opts->current_fixup_count + 2); |
6e98de72 JS |
2004 | strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len); |
2005 | strbuf_release(&header); | |
1f969601 | 2006 | if (is_fixup_flag(command, flag) && !seen_squash(opts)) |
9e3cebd9 | 2007 | update_squash_message_for_fixup(&buf); |
6e98de72 | 2008 | } else { |
33d66df3 | 2009 | struct object_id head; |
6e98de72 JS |
2010 | struct commit *head_commit; |
2011 | const char *head_message, *body; | |
2012 | ||
4a93b899 | 2013 | if (repo_get_oid(r, "HEAD", &head)) |
6e98de72 | 2014 | return error(_("need a HEAD to fixup")); |
005af339 | 2015 | if (!(head_commit = lookup_commit_reference(r, &head))) |
6e98de72 | 2016 | return error(_("could not read HEAD")); |
4a93b899 ÆAB |
2017 | if (!(head_message = repo_logmsg_reencode(r, head_commit, NULL, |
2018 | encoding))) | |
6e98de72 JS |
2019 | return error(_("could not read HEAD's commit message")); |
2020 | ||
2021 | find_commit_subject(head_message, &body); | |
9e3cebd9 | 2022 | if (command == TODO_FIXUP && !flag && write_message(body, strlen(body), |
eab0df0e | 2023 | rebase_path_fixup_msg(), 0) < 0) { |
4a93b899 | 2024 | repo_unuse_commit_buffer(r, head_commit, head_message); |
eab0df0e | 2025 | return error(_("cannot write '%s'"), rebase_path_fixup_msg()); |
6e98de72 | 2026 | } |
6e98de72 | 2027 | strbuf_addf(&buf, "%c ", comment_line_char); |
71ee81cd | 2028 | strbuf_addf(&buf, _(combined_commit_msg_fmt), 2); |
6e98de72 | 2029 | strbuf_addf(&buf, "\n%c ", comment_line_char); |
1f969601 | 2030 | strbuf_addstr(&buf, is_fixup_flag(command, flag) ? |
9e3cebd9 CM |
2031 | _(skip_first_commit_msg_str) : |
2032 | _(first_commit_msg_str)); | |
6e98de72 | 2033 | strbuf_addstr(&buf, "\n\n"); |
1f969601 | 2034 | if (is_fixup_flag(command, flag)) |
9e3cebd9 CM |
2035 | strbuf_add_commented_lines(&buf, body, strlen(body)); |
2036 | else | |
2037 | strbuf_addstr(&buf, body); | |
6e98de72 | 2038 | |
4a93b899 | 2039 | repo_unuse_commit_buffer(r, head_commit, head_message); |
6e98de72 JS |
2040 | } |
2041 | ||
4a93b899 | 2042 | if (!(message = repo_logmsg_reencode(r, commit, NULL, encoding))) |
6e98de72 JS |
2043 | return error(_("could not read commit message of %s"), |
2044 | oid_to_hex(&commit->object.oid)); | |
2045 | find_commit_subject(message, &body); | |
2046 | ||
1f969601 | 2047 | if (command == TODO_SQUASH || is_fixup_flag(command, flag)) { |
9e3cebd9 | 2048 | res = append_squash_message(&buf, body, command, opts, flag); |
6e98de72 JS |
2049 | } else if (command == TODO_FIXUP) { |
2050 | strbuf_addf(&buf, "\n%c ", comment_line_char); | |
71ee81cd | 2051 | strbuf_addf(&buf, _(skip_nth_commit_msg_fmt), |
dd2e36eb | 2052 | ++opts->current_fixup_count + 1); |
6e98de72 JS |
2053 | strbuf_addstr(&buf, "\n\n"); |
2054 | strbuf_add_commented_lines(&buf, body, strlen(body)); | |
2055 | } else | |
2056 | return error(_("unknown command: %d"), command); | |
4a93b899 | 2057 | repo_unuse_commit_buffer(r, commit, message); |
6e98de72 | 2058 | |
9e3cebd9 CM |
2059 | if (!res) |
2060 | res = write_message(buf.buf, buf.len, rebase_path_squash_msg(), | |
2061 | 0); | |
6e98de72 | 2062 | strbuf_release(&buf); |
e12a7ef5 JS |
2063 | |
2064 | if (!res) { | |
2065 | strbuf_addf(&opts->current_fixups, "%s%s %s", | |
2066 | opts->current_fixups.len ? "\n" : "", | |
2067 | command_to_string(command), | |
2068 | oid_to_hex(&commit->object.oid)); | |
2069 | res = write_message(opts->current_fixups.buf, | |
2070 | opts->current_fixups.len, | |
2071 | rebase_path_current_fixups(), 0); | |
2072 | } | |
2073 | ||
6e98de72 JS |
2074 | return res; |
2075 | } | |
2076 | ||
3b335762 NTND |
2077 | static void flush_rewritten_pending(void) |
2078 | { | |
25cb8df9 | 2079 | struct strbuf buf = STRBUF_INIT; |
092bbcdf | 2080 | struct object_id newoid; |
25cb8df9 JS |
2081 | FILE *out; |
2082 | ||
092bbcdf | 2083 | if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), (GIT_MAX_HEXSZ + 1) * 2) > 0 && |
d850b7a5 | 2084 | !repo_get_oid(the_repository, "HEAD", &newoid) && |
e9d983f1 | 2085 | (out = fopen_or_warn(rebase_path_rewritten_list(), "a"))) { |
25cb8df9 JS |
2086 | char *bol = buf.buf, *eol; |
2087 | ||
2088 | while (*bol) { | |
2089 | eol = strchrnul(bol, '\n'); | |
2090 | fprintf(out, "%.*s %s\n", (int)(eol - bol), | |
092bbcdf | 2091 | bol, oid_to_hex(&newoid)); |
25cb8df9 JS |
2092 | if (!*eol) |
2093 | break; | |
2094 | bol = eol + 1; | |
2095 | } | |
2096 | fclose(out); | |
2097 | unlink(rebase_path_rewritten_pending()); | |
2098 | } | |
2099 | strbuf_release(&buf); | |
2100 | } | |
2101 | ||
2102 | static void record_in_rewritten(struct object_id *oid, | |
3b335762 NTND |
2103 | enum todo_command next_command) |
2104 | { | |
e9d983f1 | 2105 | FILE *out = fopen_or_warn(rebase_path_rewritten_pending(), "a"); |
25cb8df9 JS |
2106 | |
2107 | if (!out) | |
2108 | return; | |
2109 | ||
2110 | fprintf(out, "%s\n", oid_to_hex(oid)); | |
2111 | fclose(out); | |
2112 | ||
2113 | if (!is_fixup(next_command)) | |
2114 | flush_rewritten_pending(); | |
2115 | } | |
2116 | ||
39edfd5c EN |
2117 | static int should_edit(struct replay_opts *opts) { |
2118 | if (opts->edit < 0) | |
2119 | /* | |
2120 | * Note that we only handle the case of non-conflicted | |
2121 | * commits; continue_single_pick() handles the conflicted | |
2122 | * commits itself instead of calling this function. | |
2123 | */ | |
2124 | return (opts->action == REPLAY_REVERT && isatty(0)) ? 1 : 0; | |
2125 | return opts->edit; | |
2126 | } | |
2127 | ||
43966ab3 JH |
2128 | static void refer_to_commit(struct replay_opts *opts, |
2129 | struct strbuf *msgbuf, struct commit *commit) | |
2130 | { | |
2131 | if (opts->commit_use_reference) { | |
2132 | struct pretty_print_context ctx = { | |
2133 | .abbrev = DEFAULT_ABBREV, | |
2134 | .date_mode.type = DATE_SHORT, | |
2135 | }; | |
bab82164 ÆAB |
2136 | repo_format_commit_message(the_repository, commit, |
2137 | "%h (%s, %ad)", msgbuf, &ctx); | |
43966ab3 JH |
2138 | } else { |
2139 | strbuf_addstr(msgbuf, oid_to_hex(&commit->object.oid)); | |
2140 | } | |
2141 | } | |
2142 | ||
f11c9580 | 2143 | static int do_pick_commit(struct repository *r, |
ae70e34f | 2144 | struct todo_item *item, |
f11c9580 | 2145 | struct replay_opts *opts, |
a47ba3c7 | 2146 | int final_fixup, int *check_todo) |
043a4492 | 2147 | { |
39edfd5c EN |
2148 | unsigned int flags = should_edit(opts) ? EDIT_MSG : 0; |
2149 | const char *msg_file = should_edit(opts) ? NULL : git_path_merge_msg(r); | |
ace976b2 | 2150 | struct object_id head; |
043a4492 RR |
2151 | struct commit *base, *next, *parent; |
2152 | const char *base_label, *next_label; | |
356ee465 | 2153 | char *author = NULL; |
d74a4e57 | 2154 | struct commit_message msg = { NULL, NULL, NULL, NULL }; |
043a4492 | 2155 | struct strbuf msgbuf = STRBUF_INIT; |
e98c4269 | 2156 | int res, unborn = 0, reword = 0, allow, drop_commit; |
ae70e34f CM |
2157 | enum todo_command command = item->command; |
2158 | struct commit *commit = item->commit; | |
043a4492 RR |
2159 | |
2160 | if (opts->no_commit) { | |
2161 | /* | |
2162 | * We do not intend to commit immediately. We just want to | |
2163 | * merge the differences in, so let's compute the tree | |
81483fe6 | 2164 | * that represents the "current" state for the merge machinery |
043a4492 RR |
2165 | * to work on. |
2166 | */ | |
f11c9580 | 2167 | if (write_index_as_tree(&head, r->index, r->index_file, 0, NULL)) |
93b3df6f | 2168 | return error(_("your index file is unmerged.")); |
043a4492 | 2169 | } else { |
4a93b899 | 2170 | unborn = repo_get_oid(r, "HEAD", &head); |
d87d48b2 JS |
2171 | /* Do we want to generate a root commit? */ |
2172 | if (is_pick_or_similar(command) && opts->have_squash_onto && | |
4a7e27e9 | 2173 | oideq(&head, &opts->squash_onto)) { |
d87d48b2 JS |
2174 | if (is_fixup(command)) |
2175 | return error(_("cannot fixup root commit")); | |
2176 | flags |= CREATE_ROOT_COMMIT; | |
2177 | unborn = 1; | |
2178 | } else if (unborn) | |
eb0ccfd7 | 2179 | oidcpy(&head, the_hash_algo->empty_tree); |
ffc00a48 | 2180 | if (index_differs_from(r, unborn ? empty_tree_oid_hex() : "HEAD", |
02f2f56b | 2181 | NULL, 0)) |
e1ff0a32 | 2182 | return error_dirty_index(r, opts); |
043a4492 | 2183 | } |
f11c9580 | 2184 | discard_index(r->index); |
043a4492 | 2185 | |
637666c8 | 2186 | if (!commit->parents) |
043a4492 | 2187 | parent = NULL; |
043a4492 RR |
2188 | else if (commit->parents->next) { |
2189 | /* Reverting or cherry-picking a merge commit */ | |
2190 | int cnt; | |
2191 | struct commit_list *p; | |
2192 | ||
2193 | if (!opts->mainline) | |
93b3df6f | 2194 | return error(_("commit %s is a merge but no -m option was given."), |
f2fd0760 | 2195 | oid_to_hex(&commit->object.oid)); |
043a4492 RR |
2196 | |
2197 | for (cnt = 1, p = commit->parents; | |
2198 | cnt != opts->mainline && p; | |
2199 | cnt++) | |
2200 | p = p->next; | |
2201 | if (cnt != opts->mainline || !p) | |
93b3df6f | 2202 | return error(_("commit %s does not have parent %d"), |
f2fd0760 | 2203 | oid_to_hex(&commit->object.oid), opts->mainline); |
043a4492 | 2204 | parent = p->item; |
37897bfc SO |
2205 | } else if (1 < opts->mainline) |
2206 | /* | |
2207 | * Non-first parent explicitly specified as mainline for | |
2208 | * non-merge commit | |
2209 | */ | |
2210 | return error(_("commit %s does not have parent %d"), | |
2211 | oid_to_hex(&commit->object.oid), opts->mainline); | |
043a4492 RR |
2212 | else |
2213 | parent = commit->parents->item; | |
2214 | ||
bcbb68be JS |
2215 | if (get_message(commit, &msg) != 0) |
2216 | return error(_("cannot get commit message for %s"), | |
2217 | oid_to_hex(&commit->object.oid)); | |
2218 | ||
6e98de72 | 2219 | if (opts->allow_ff && !is_fixup(command) && |
4a7e27e9 | 2220 | ((parent && oideq(&parent->object.oid, &head)) || |
bcbb68be JS |
2221 | (!parent && unborn))) { |
2222 | if (is_rebase_i(opts)) | |
2223 | write_author_script(msg.message); | |
f11c9580 | 2224 | res = fast_forward_to(r, &commit->object.oid, &head, unborn, |
bcbb68be JS |
2225 | opts); |
2226 | if (res || command != TODO_REWORD) | |
2227 | goto leave; | |
450efe2d | 2228 | reword = 1; |
bcbb68be JS |
2229 | msg_file = NULL; |
2230 | goto fast_forward_edit; | |
2231 | } | |
4a93b899 | 2232 | if (parent && repo_parse_commit(r, parent) < 0) |
004fefa7 JS |
2233 | /* TRANSLATORS: The first %s will be a "todo" command like |
2234 | "revert" or "pick", the second %s a SHA1. */ | |
043a4492 | 2235 | return error(_("%s: cannot parse parent commit %s"), |
004fefa7 JS |
2236 | command_to_string(command), |
2237 | oid_to_hex(&parent->object.oid)); | |
043a4492 | 2238 | |
043a4492 RR |
2239 | /* |
2240 | * "commit" is an existing commit. We would want to apply | |
2241 | * the difference it introduces since its first parent "prev" | |
2242 | * on top of the current HEAD if we are cherry-pick. Or the | |
2243 | * reverse of it if we are revert. | |
2244 | */ | |
2245 | ||
004fefa7 | 2246 | if (command == TODO_REVERT) { |
043a4492 RR |
2247 | base = commit; |
2248 | base_label = msg.label; | |
2249 | next = parent; | |
2250 | next_label = msg.parent_label; | |
43966ab3 JH |
2251 | if (opts->commit_use_reference) { |
2252 | strbuf_addstr(&msgbuf, | |
2253 | "# *** SAY WHY WE ARE REVERTING ON THE TITLE LINE ***"); | |
2254 | } else { | |
2255 | strbuf_addstr(&msgbuf, "Revert \""); | |
2256 | strbuf_addstr(&msgbuf, msg.subject); | |
2257 | strbuf_addstr(&msgbuf, "\""); | |
2258 | } | |
2259 | strbuf_addstr(&msgbuf, "\n\nThis reverts commit "); | |
2260 | refer_to_commit(opts, &msgbuf, commit); | |
043a4492 RR |
2261 | |
2262 | if (commit->parents && commit->parents->next) { | |
2263 | strbuf_addstr(&msgbuf, ", reversing\nchanges made to "); | |
43966ab3 | 2264 | refer_to_commit(opts, &msgbuf, parent); |
043a4492 RR |
2265 | } |
2266 | strbuf_addstr(&msgbuf, ".\n"); | |
2267 | } else { | |
2268 | const char *p; | |
2269 | ||
2270 | base = parent; | |
2271 | base_label = msg.parent_label; | |
2272 | next = commit; | |
2273 | next_label = msg.label; | |
2274 | ||
23aa5142 JS |
2275 | /* Append the commit log message to msgbuf. */ |
2276 | if (find_commit_subject(msg.message, &p)) | |
2277 | strbuf_addstr(&msgbuf, p); | |
043a4492 RR |
2278 | |
2279 | if (opts->record_origin) { | |
44dc738a | 2280 | strbuf_complete_line(&msgbuf); |
bab4d109 | 2281 | if (!has_conforming_footer(&msgbuf, NULL, 0)) |
b971e04f | 2282 | strbuf_addch(&msgbuf, '\n'); |
cd650a4e | 2283 | strbuf_addstr(&msgbuf, cherry_picked_prefix); |
f2fd0760 | 2284 | strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid)); |
043a4492 RR |
2285 | strbuf_addstr(&msgbuf, ")\n"); |
2286 | } | |
356ee465 PW |
2287 | if (!is_fixup(command)) |
2288 | author = get_author(msg.message); | |
043a4492 RR |
2289 | } |
2290 | ||
04efc8b5 | 2291 | if (command == TODO_REWORD) |
450efe2d | 2292 | reword = 1; |
04efc8b5 | 2293 | else if (is_fixup(command)) { |
9e3cebd9 | 2294 | if (update_squash_messages(r, command, commit, |
a5792e9d ÆAB |
2295 | opts, item->flags)) { |
2296 | res = -1; | |
2297 | goto leave; | |
2298 | } | |
789b3eff | 2299 | flags |= AMEND_MSG; |
6e98de72 JS |
2300 | if (!final_fixup) |
2301 | msg_file = rebase_path_squash_msg(); | |
2302 | else if (file_exists(rebase_path_fixup_msg())) { | |
f7d42cee | 2303 | flags |= VERBATIM_MSG; |
6e98de72 JS |
2304 | msg_file = rebase_path_fixup_msg(); |
2305 | } else { | |
f11c9580 | 2306 | const char *dest = git_path_squash_msg(r); |
6e98de72 | 2307 | unlink(dest); |
a5792e9d ÆAB |
2308 | if (copy_file(dest, rebase_path_squash_msg(), 0666)) { |
2309 | res = error(_("could not rename '%s' to '%s'"), | |
2310 | rebase_path_squash_msg(), dest); | |
2311 | goto leave; | |
2312 | } | |
f11c9580 | 2313 | unlink(git_path_merge_msg(r)); |
6e98de72 | 2314 | msg_file = dest; |
789b3eff | 2315 | flags |= EDIT_MSG; |
6e98de72 JS |
2316 | } |
2317 | } | |
2318 | ||
a852ec7f | 2319 | if (opts->signoff && !is_fixup(command)) |
b34eeea3 PW |
2320 | append_signoff(&msgbuf, 0, 0); |
2321 | ||
0473f28a JS |
2322 | if (is_rebase_i(opts) && write_author_script(msg.message) < 0) |
2323 | res = -1; | |
14c4586c EN |
2324 | else if (!opts->strategy || |
2325 | !strcmp(opts->strategy, "recursive") || | |
2326 | !strcmp(opts->strategy, "ort") || | |
2327 | command == TODO_REVERT) { | |
f11c9580 | 2328 | res = do_recursive_merge(r, base, next, base_label, next_label, |
48be4c62 | 2329 | &head, &msgbuf, opts); |
f241ff0d | 2330 | if (res < 0) |
19517fb9 SB |
2331 | goto leave; |
2332 | ||
75871495 | 2333 | res |= write_message(msgbuf.buf, msgbuf.len, |
f11c9580 | 2334 | git_path_merge_msg(r), 0); |
043a4492 RR |
2335 | } else { |
2336 | struct commit_list *common = NULL; | |
2337 | struct commit_list *remotes = NULL; | |
2338 | ||
75871495 | 2339 | res = write_message(msgbuf.buf, msgbuf.len, |
f11c9580 | 2340 | git_path_merge_msg(r), 0); |
043a4492 RR |
2341 | |
2342 | commit_list_insert(base, &common); | |
2343 | commit_list_insert(next, &remotes); | |
f11c9580 | 2344 | res |= try_merge_command(r, opts->strategy, |
fb60b9f3 | 2345 | opts->xopts.nr, opts->xopts.v, |
ace976b2 | 2346 | common, oid_to_hex(&head), remotes); |
043a4492 RR |
2347 | free_commit_list(common); |
2348 | free_commit_list(remotes); | |
2349 | } | |
2350 | ||
2351 | /* | |
2352 | * If the merge was clean or if it failed due to conflict, we write | |
2353 | * CHERRY_PICK_HEAD for the subsequent invocation of commit to use. | |
2354 | * However, if the merge did not even start, then we don't want to | |
2355 | * write it at all. | |
2356 | */ | |
21b11c6d PW |
2357 | if ((command == TODO_PICK || command == TODO_REWORD || |
2358 | command == TODO_EDIT) && !opts->no_commit && | |
2359 | (res == 0 || res == 1) && | |
ae077771 | 2360 | update_ref(NULL, "CHERRY_PICK_HEAD", &commit->object.oid, NULL, |
91774afc | 2361 | REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) |
dbfad033 | 2362 | res = -1; |
004fefa7 | 2363 | if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) && |
ae077771 | 2364 | update_ref(NULL, "REVERT_HEAD", &commit->object.oid, NULL, |
91774afc | 2365 | REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) |
dbfad033 | 2366 | res = -1; |
043a4492 RR |
2367 | |
2368 | if (res) { | |
004fefa7 | 2369 | error(command == TODO_REVERT |
043a4492 RR |
2370 | ? _("could not revert %s... %s") |
2371 | : _("could not apply %s... %s"), | |
39755964 | 2372 | short_commit_name(commit), msg.subject); |
005af339 | 2373 | print_advice(r, res == 1, opts); |
f11c9580 | 2374 | repo_rerere(r, opts->allow_rerere_auto); |
c8d1351d | 2375 | goto leave; |
043a4492 RR |
2376 | } |
2377 | ||
e98c4269 | 2378 | drop_commit = 0; |
f11c9580 | 2379 | allow = allow_empty(r, opts, commit); |
706728a3 FC |
2380 | if (allow < 0) { |
2381 | res = allow; | |
2382 | goto leave; | |
e98c4269 | 2383 | } else if (allow == 1) { |
789b3eff | 2384 | flags |= ALLOW_EMPTY; |
e98c4269 EN |
2385 | } else if (allow == 2) { |
2386 | drop_commit = 1; | |
c8e4159e HWN |
2387 | refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD", |
2388 | NULL, 0); | |
9a1b7474 | 2389 | unlink(git_path_merge_msg(r)); |
5291828d | 2390 | unlink(git_path_auto_merge(r)); |
e98c4269 EN |
2391 | fprintf(stderr, |
2392 | _("dropping %s %s -- patch contents already upstream\n"), | |
2393 | oid_to_hex(&commit->object.oid), msg.subject); | |
2394 | } /* else allow == 0 and there's nothing special to do */ | |
2395 | if (!opts->no_commit && !drop_commit) { | |
356ee465 | 2396 | if (author || command == TODO_REVERT || (flags & AMEND_MSG)) |
430b75f7 PW |
2397 | res = do_commit(r, msg_file, author, opts, flags, |
2398 | commit? &commit->object.oid : NULL); | |
356ee465 PW |
2399 | else |
2400 | res = error(_("unable to parse commit author")); | |
a47ba3c7 PW |
2401 | *check_todo = !!(flags & EDIT_MSG); |
2402 | if (!res && reword) { | |
450efe2d | 2403 | fast_forward_edit: |
20f4b044 | 2404 | res = run_git_commit(NULL, opts, EDIT_MSG | |
450efe2d PW |
2405 | VERIFY_MSG | AMEND_MSG | |
2406 | (flags & ALLOW_EMPTY)); | |
a47ba3c7 PW |
2407 | *check_todo = 1; |
2408 | } | |
356ee465 | 2409 | } |
6e98de72 | 2410 | |
450efe2d | 2411 | |
6e98de72 JS |
2412 | if (!res && final_fixup) { |
2413 | unlink(rebase_path_fixup_msg()); | |
2414 | unlink(rebase_path_squash_msg()); | |
e12a7ef5 JS |
2415 | unlink(rebase_path_current_fixups()); |
2416 | strbuf_reset(&opts->current_fixups); | |
2417 | opts->current_fixup_count = 0; | |
6e98de72 | 2418 | } |
c8d1351d FC |
2419 | |
2420 | leave: | |
d74a4e57 | 2421 | free_message(commit, &msg); |
356ee465 | 2422 | free(author); |
a5792e9d | 2423 | strbuf_release(&msgbuf); |
1e41229d | 2424 | update_abort_safety_file(); |
043a4492 RR |
2425 | |
2426 | return res; | |
2427 | } | |
2428 | ||
c3e8618c | 2429 | static int prepare_revs(struct replay_opts *opts) |
043a4492 | 2430 | { |
a73e22e9 MZ |
2431 | /* |
2432 | * picking (but not reverting) ranges (but not individual revisions) | |
2433 | * should be done in reverse | |
2434 | */ | |
2435 | if (opts->action == REPLAY_PICK && !opts->revs->no_walk) | |
043a4492 RR |
2436 | opts->revs->reverse ^= 1; |
2437 | ||
2438 | if (prepare_revision_walk(opts->revs)) | |
c3e8618c | 2439 | return error(_("revision walk setup failed")); |
043a4492 | 2440 | |
c3e8618c | 2441 | return 0; |
043a4492 RR |
2442 | } |
2443 | ||
f11c9580 NTND |
2444 | static int read_and_refresh_cache(struct repository *r, |
2445 | struct replay_opts *opts) | |
043a4492 | 2446 | { |
14bca6c6 | 2447 | struct lock_file index_lock = LOCK_INIT; |
3a95f31d NTND |
2448 | int index_fd = repo_hold_locked_index(r, &index_lock, 0); |
2449 | if (repo_read_index(r) < 0) { | |
49fb937e | 2450 | rollback_lock_file(&index_lock); |
0d9c6dc9 | 2451 | return error(_("git %s: failed to read the index"), |
629444ad | 2452 | action_name(opts)); |
49fb937e | 2453 | } |
f11c9580 | 2454 | refresh_index(r->index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL); |
5d9c9349 | 2455 | |
61000814 | 2456 | if (index_fd >= 0) { |
f11c9580 | 2457 | if (write_locked_index(r->index, &index_lock, |
61000814 | 2458 | COMMIT_LOCK | SKIP_IF_UNCHANGED)) { |
0d9c6dc9 | 2459 | return error(_("git %s: failed to refresh the index"), |
629444ad | 2460 | action_name(opts)); |
49fb937e | 2461 | } |
043a4492 | 2462 | } |
5d9c9349 DS |
2463 | |
2464 | /* | |
2465 | * If we are resolving merges in any way other than "ort", then | |
2466 | * expand the sparse index. | |
2467 | */ | |
2468 | if (opts->strategy && strcmp(opts->strategy, "ort")) | |
2469 | ensure_full_index(r->index); | |
0d9c6dc9 | 2470 | return 0; |
043a4492 RR |
2471 | } |
2472 | ||
5d94d545 | 2473 | void todo_list_release(struct todo_list *todo_list) |
043a4492 | 2474 | { |
004fefa7 | 2475 | strbuf_release(&todo_list->buf); |
6a83d902 | 2476 | FREE_AND_NULL(todo_list->items); |
004fefa7 JS |
2477 | todo_list->nr = todo_list->alloc = 0; |
2478 | } | |
043a4492 | 2479 | |
004fefa7 JS |
2480 | static struct todo_item *append_new_todo(struct todo_list *todo_list) |
2481 | { | |
2482 | ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc); | |
2483 | return todo_list->items + todo_list->nr++; | |
043a4492 RR |
2484 | } |
2485 | ||
6ad656db AG |
2486 | const char *todo_item_get_arg(struct todo_list *todo_list, |
2487 | struct todo_item *item) | |
2488 | { | |
2489 | return todo_list->buf.buf + item->arg_offset; | |
2490 | } | |
2491 | ||
3e81bccd PW |
2492 | static int is_command(enum todo_command command, const char **bol) |
2493 | { | |
2494 | const char *str = todo_command_info[command].str; | |
2495 | const char nick = todo_command_info[command].c; | |
7aed2c05 | 2496 | const char *p = *bol; |
3e81bccd | 2497 | |
7aed2c05 PW |
2498 | return (skip_prefix(p, str, &p) || (nick && *p++ == nick)) && |
2499 | (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || !*p) && | |
2500 | (*bol = p); | |
3e81bccd PW |
2501 | } |
2502 | ||
16b3880d PW |
2503 | static int check_label_or_ref_arg(enum todo_command command, const char *arg) |
2504 | { | |
2505 | switch (command) { | |
2506 | case TODO_LABEL: | |
2507 | /* | |
2508 | * '#' is not a valid label as the merge command uses it to | |
2509 | * separate merge parents from the commit subject. | |
2510 | */ | |
2511 | if (!strcmp(arg, "#") || | |
2512 | check_refname_format(arg, REFNAME_ALLOW_ONELEVEL)) | |
2513 | return error(_("'%s' is not a valid label"), arg); | |
2514 | break; | |
2515 | ||
2516 | case TODO_UPDATE_REF: | |
2517 | if (check_refname_format(arg, REFNAME_ALLOW_ONELEVEL)) | |
2518 | return error(_("'%s' is not a valid refname"), arg); | |
2519 | if (check_refname_format(arg, 0)) | |
2520 | return error(_("update-ref requires a fully qualified " | |
2521 | "refname e.g. refs/heads/%s"), arg); | |
2522 | break; | |
2523 | ||
2524 | default: | |
2525 | BUG("unexpected todo_command"); | |
2526 | } | |
2527 | ||
2528 | return 0; | |
2529 | } | |
2530 | ||
005af339 | 2531 | static int parse_insn_line(struct repository *r, struct todo_item *item, |
6ad656db | 2532 | const char *buf, const char *bol, char *eol) |
043a4492 | 2533 | { |
1e43ed98 | 2534 | struct object_id commit_oid; |
043a4492 | 2535 | char *end_of_object_name; |
004fefa7 JS |
2536 | int i, saved, status, padding; |
2537 | ||
4c68e7dd JS |
2538 | item->flags = 0; |
2539 | ||
8f8550b3 JS |
2540 | /* left-trim */ |
2541 | bol += strspn(bol, " \t"); | |
2542 | ||
25c43667 | 2543 | if (bol == eol || *bol == '\r' || *bol == comment_line_char) { |
ac191470 | 2544 | item->command = TODO_COMMENT; |
25c43667 | 2545 | item->commit = NULL; |
6ad656db | 2546 | item->arg_offset = bol - buf; |
25c43667 JS |
2547 | item->arg_len = eol - bol; |
2548 | return 0; | |
2549 | } | |
2550 | ||
ac191470 | 2551 | for (i = 0; i < TODO_COMMENT; i++) |
3e81bccd | 2552 | if (is_command(i, &bol)) { |
004fefa7 JS |
2553 | item->command = i; |
2554 | break; | |
2555 | } | |
ac191470 | 2556 | if (i >= TODO_COMMENT) |
7aed2c05 PW |
2557 | return error(_("invalid command '%.*s'"), |
2558 | (int)strcspn(bol, " \t\r\n"), bol); | |
043a4492 | 2559 | |
66afa24f JS |
2560 | /* Eat up extra spaces/ tabs before object name */ |
2561 | padding = strspn(bol, " \t"); | |
2562 | bol += padding; | |
2563 | ||
71f82465 | 2564 | if (item->command == TODO_NOOP || item->command == TODO_BREAK) { |
66afa24f JS |
2565 | if (bol != eol) |
2566 | return error(_("%s does not accept arguments: '%s'"), | |
2567 | command_to_string(item->command), bol); | |
25c43667 | 2568 | item->commit = NULL; |
6ad656db | 2569 | item->arg_offset = bol - buf; |
25c43667 JS |
2570 | item->arg_len = eol - bol; |
2571 | return 0; | |
2572 | } | |
2573 | ||
043a4492 | 2574 | if (!padding) |
66afa24f JS |
2575 | return error(_("missing arguments for %s"), |
2576 | command_to_string(item->command)); | |
043a4492 | 2577 | |
9055e401 | 2578 | if (item->command == TODO_EXEC || item->command == TODO_LABEL || |
a97d7916 | 2579 | item->command == TODO_RESET || item->command == TODO_UPDATE_REF) { |
16b3880d PW |
2580 | int ret = 0; |
2581 | ||
7dcbb3cb | 2582 | item->commit = NULL; |
6ad656db | 2583 | item->arg_offset = bol - buf; |
311af526 | 2584 | item->arg_len = (int)(eol - bol); |
16b3880d PW |
2585 | if (item->command == TODO_LABEL || |
2586 | item->command == TODO_UPDATE_REF) { | |
2587 | saved = *eol; | |
2588 | *eol = '\0'; | |
2589 | ret = check_label_or_ref_arg(item->command, bol); | |
2590 | *eol = saved; | |
2591 | } | |
2592 | return ret; | |
311af526 JS |
2593 | } |
2594 | ||
9e3cebd9 | 2595 | if (item->command == TODO_FIXUP) { |
666b6e11 | 2596 | if (skip_prefix(bol, "-C", &bol)) { |
9e3cebd9 CM |
2597 | bol += strspn(bol, " \t"); |
2598 | item->flags |= TODO_REPLACE_FIXUP_MSG; | |
666b6e11 | 2599 | } else if (skip_prefix(bol, "-c", &bol)) { |
9e3cebd9 CM |
2600 | bol += strspn(bol, " \t"); |
2601 | item->flags |= TODO_EDIT_FIXUP_MSG; | |
2602 | } | |
2603 | } | |
2604 | ||
4c68e7dd JS |
2605 | if (item->command == TODO_MERGE) { |
2606 | if (skip_prefix(bol, "-C", &bol)) | |
2607 | bol += strspn(bol, " \t"); | |
2608 | else if (skip_prefix(bol, "-c", &bol)) { | |
2609 | bol += strspn(bol, " \t"); | |
2610 | item->flags |= TODO_EDIT_MERGE_MSG; | |
2611 | } else { | |
2612 | item->flags |= TODO_EDIT_MERGE_MSG; | |
2613 | item->commit = NULL; | |
6ad656db | 2614 | item->arg_offset = bol - buf; |
4c68e7dd JS |
2615 | item->arg_len = (int)(eol - bol); |
2616 | return 0; | |
2617 | } | |
2618 | } | |
2619 | ||
004fefa7 | 2620 | end_of_object_name = (char *) bol + strcspn(bol, " \t\n"); |
043a4492 RR |
2621 | saved = *end_of_object_name; |
2622 | *end_of_object_name = '\0'; | |
4a93b899 | 2623 | status = repo_get_oid(r, bol, &commit_oid); |
d859dcad JS |
2624 | if (status < 0) |
2625 | error(_("could not parse '%s'"), bol); /* return later */ | |
043a4492 RR |
2626 | *end_of_object_name = saved; |
2627 | ||
6ad656db AG |
2628 | bol = end_of_object_name + strspn(end_of_object_name, " \t"); |
2629 | item->arg_offset = bol - buf; | |
2630 | item->arg_len = (int)(eol - bol); | |
c22f7dfb | 2631 | |
043a4492 | 2632 | if (status < 0) |
d859dcad | 2633 | return status; |
043a4492 | 2634 | |
005af339 | 2635 | item->commit = lookup_commit_reference(r, &commit_oid); |
d859dcad | 2636 | return item->commit ? 0 : -1; |
043a4492 RR |
2637 | } |
2638 | ||
4a72486d PW |
2639 | int sequencer_get_last_command(struct repository *r, enum replay_action *action) |
2640 | { | |
ed5b1ca1 | 2641 | const char *todo_file, *bol; |
4a72486d | 2642 | struct strbuf buf = STRBUF_INIT; |
ed5b1ca1 | 2643 | int ret = 0; |
4a72486d PW |
2644 | |
2645 | todo_file = git_path_todo_file(); | |
2646 | if (strbuf_read_file(&buf, todo_file, 0) < 0) { | |
ed5b1ca1 | 2647 | if (errno == ENOENT || errno == ENOTDIR) |
4a72486d PW |
2648 | return -1; |
2649 | else | |
2650 | return error_errno("unable to open '%s'", todo_file); | |
2651 | } | |
ed5b1ca1 PW |
2652 | bol = buf.buf + strspn(buf.buf, " \t\r\n"); |
2653 | if (is_command(TODO_PICK, &bol) && (*bol == ' ' || *bol == '\t')) | |
4a72486d | 2654 | *action = REPLAY_PICK; |
ed5b1ca1 PW |
2655 | else if (is_command(TODO_REVERT, &bol) && |
2656 | (*bol == ' ' || *bol == '\t')) | |
4a72486d PW |
2657 | *action = REPLAY_REVERT; |
2658 | else | |
ed5b1ca1 | 2659 | ret = -1; |
4a72486d | 2660 | |
4a72486d PW |
2661 | strbuf_release(&buf); |
2662 | ||
2663 | return ret; | |
2664 | } | |
2665 | ||
5d94d545 AG |
2666 | int todo_list_parse_insn_buffer(struct repository *r, char *buf, |
2667 | struct todo_list *todo_list) | |
043a4492 | 2668 | { |
004fefa7 JS |
2669 | struct todo_item *item; |
2670 | char *p = buf, *next_p; | |
6e98de72 | 2671 | int i, res = 0, fixup_okay = file_exists(rebase_path_done()); |
043a4492 | 2672 | |
170eea97 | 2673 | todo_list->current = todo_list->nr = todo_list->total_nr = 0; |
2b71595d | 2674 | |
004fefa7 | 2675 | for (i = 1; *p; i++, p = next_p) { |
043a4492 | 2676 | char *eol = strchrnul(p, '\n'); |
004fefa7 JS |
2677 | |
2678 | next_p = *eol ? eol + 1 /* skip LF */ : eol; | |
2679 | ||
6307041d JS |
2680 | if (p != eol && eol[-1] == '\r') |
2681 | eol--; /* strip Carriage Return */ | |
2682 | ||
004fefa7 JS |
2683 | item = append_new_todo(todo_list); |
2684 | item->offset_in_buf = p - todo_list->buf.buf; | |
6ad656db | 2685 | if (parse_insn_line(r, item, buf, p, eol)) { |
93b3df6f | 2686 | res = error(_("invalid line %d: %.*s"), |
004fefa7 | 2687 | i, (int)(eol - p), p); |
2b71595d | 2688 | item->command = TODO_COMMENT + 1; |
6ad656db | 2689 | item->arg_offset = p - buf; |
2b71595d AG |
2690 | item->arg_len = (int)(eol - p); |
2691 | item->commit = NULL; | |
004fefa7 | 2692 | } |
6e98de72 | 2693 | |
170eea97 JS |
2694 | if (item->command != TODO_COMMENT) |
2695 | todo_list->total_nr++; | |
2696 | ||
6e98de72 JS |
2697 | if (fixup_okay) |
2698 | ; /* do nothing */ | |
2699 | else if (is_fixup(item->command)) | |
2700 | return error(_("cannot '%s' without a previous commit"), | |
2701 | command_to_string(item->command)); | |
2702 | else if (!is_noop(item->command)) | |
2703 | fixup_okay = 1; | |
043a4492 | 2704 | } |
52865279 | 2705 | |
004fefa7 | 2706 | return res; |
043a4492 RR |
2707 | } |
2708 | ||
968492e4 JS |
2709 | static int count_commands(struct todo_list *todo_list) |
2710 | { | |
2711 | int count = 0, i; | |
2712 | ||
2713 | for (i = 0; i < todo_list->nr; i++) | |
2714 | if (todo_list->items[i].command != TODO_COMMENT) | |
2715 | count++; | |
2716 | ||
2717 | return count; | |
2718 | } | |
2719 | ||
a01c2a5f JS |
2720 | static int get_item_line_offset(struct todo_list *todo_list, int index) |
2721 | { | |
2722 | return index < todo_list->nr ? | |
2723 | todo_list->items[index].offset_in_buf : todo_list->buf.len; | |
2724 | } | |
2725 | ||
2726 | static const char *get_item_line(struct todo_list *todo_list, int index) | |
2727 | { | |
2728 | return todo_list->buf.buf + get_item_line_offset(todo_list, index); | |
2729 | } | |
2730 | ||
2731 | static int get_item_line_length(struct todo_list *todo_list, int index) | |
2732 | { | |
2733 | return get_item_line_offset(todo_list, index + 1) | |
2734 | - get_item_line_offset(todo_list, index); | |
2735 | } | |
2736 | ||
87805600 RS |
2737 | static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path) |
2738 | { | |
2739 | int fd; | |
2740 | ssize_t len; | |
2741 | ||
2742 | fd = open(path, O_RDONLY); | |
2743 | if (fd < 0) | |
2744 | return error_errno(_("could not open '%s'"), path); | |
2745 | len = strbuf_read(sb, fd, 0); | |
2746 | close(fd); | |
2747 | if (len < 0) | |
2748 | return error(_("could not read '%s'."), path); | |
2749 | return len; | |
2750 | } | |
2751 | ||
b07d9bfd PW |
2752 | static int have_finished_the_last_pick(void) |
2753 | { | |
2754 | struct strbuf buf = STRBUF_INIT; | |
2755 | const char *eol; | |
2756 | const char *todo_path = git_path_todo_file(); | |
2757 | int ret = 0; | |
2758 | ||
2759 | if (strbuf_read_file(&buf, todo_path, 0) < 0) { | |
2760 | if (errno == ENOENT) { | |
2761 | return 0; | |
2762 | } else { | |
2763 | error_errno("unable to open '%s'", todo_path); | |
2764 | return 0; | |
2765 | } | |
2766 | } | |
2767 | /* If there is only one line then we are done */ | |
2768 | eol = strchr(buf.buf, '\n'); | |
2769 | if (!eol || !eol[1]) | |
2770 | ret = 1; | |
2771 | ||
2772 | strbuf_release(&buf); | |
2773 | ||
2774 | return ret; | |
2775 | } | |
2776 | ||
f496b064 | 2777 | void sequencer_post_commit_cleanup(struct repository *r, int verbose) |
b07d9bfd PW |
2778 | { |
2779 | struct replay_opts opts = REPLAY_OPTS_INIT; | |
2780 | int need_cleanup = 0; | |
2781 | ||
c8e4159e HWN |
2782 | if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) { |
2783 | if (!refs_delete_ref(get_main_ref_store(r), "", | |
2784 | "CHERRY_PICK_HEAD", NULL, 0) && | |
2785 | verbose) | |
f496b064 | 2786 | warning(_("cancelling a cherry picking in progress")); |
b07d9bfd PW |
2787 | opts.action = REPLAY_PICK; |
2788 | need_cleanup = 1; | |
2789 | } | |
2790 | ||
b8825ef2 HWN |
2791 | if (refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) { |
2792 | if (!refs_delete_ref(get_main_ref_store(r), "", "REVERT_HEAD", | |
2793 | NULL, 0) && | |
2794 | verbose) | |
f496b064 | 2795 | warning(_("cancelling a revert in progress")); |
b07d9bfd PW |
2796 | opts.action = REPLAY_REVERT; |
2797 | need_cleanup = 1; | |
2798 | } | |
2799 | ||
5291828d EN |
2800 | unlink(git_path_auto_merge(r)); |
2801 | ||
b07d9bfd PW |
2802 | if (!need_cleanup) |
2803 | return; | |
2804 | ||
2805 | if (!have_finished_the_last_pick()) | |
2806 | return; | |
2807 | ||
2808 | sequencer_remove_state(&opts); | |
2809 | } | |
2810 | ||
3f34f2d8 AG |
2811 | static void todo_list_write_total_nr(struct todo_list *todo_list) |
2812 | { | |
2813 | FILE *f = fopen_or_warn(rebase_path_msgtotal(), "w"); | |
2814 | ||
2815 | if (f) { | |
2816 | fprintf(f, "%d\n", todo_list->total_nr); | |
2817 | fclose(f); | |
2818 | } | |
2819 | } | |
2820 | ||
005af339 NTND |
2821 | static int read_populate_todo(struct repository *r, |
2822 | struct todo_list *todo_list, | |
2823 | struct replay_opts *opts) | |
043a4492 | 2824 | { |
c0246501 | 2825 | const char *todo_file = get_todo_path(opts); |
87805600 | 2826 | int res; |
043a4492 | 2827 | |
004fefa7 | 2828 | strbuf_reset(&todo_list->buf); |
87805600 RS |
2829 | if (strbuf_read_file_or_whine(&todo_list->buf, todo_file) < 0) |
2830 | return -1; | |
043a4492 | 2831 | |
5d94d545 | 2832 | res = todo_list_parse_insn_buffer(r, todo_list->buf.buf, todo_list); |
27fdbb96 JS |
2833 | if (res) { |
2834 | if (is_rebase_i(opts)) | |
2835 | return error(_("please fix this using " | |
2836 | "'git rebase --edit-todo'.")); | |
93b3df6f | 2837 | return error(_("unusable instruction sheet: '%s'"), todo_file); |
27fdbb96 | 2838 | } |
2eeaf1b3 | 2839 | |
52865279 JS |
2840 | if (!todo_list->nr && |
2841 | (!is_rebase_i(opts) || !file_exists(rebase_path_done()))) | |
2842 | return error(_("no commits parsed.")); | |
2843 | ||
2eeaf1b3 | 2844 | if (!is_rebase_i(opts)) { |
004fefa7 JS |
2845 | enum todo_command valid = |
2846 | opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT; | |
2847 | int i; | |
2848 | ||
2849 | for (i = 0; i < todo_list->nr; i++) | |
2850 | if (valid == todo_list->items[i].command) | |
2851 | continue; | |
2852 | else if (valid == TODO_PICK) | |
93b3df6f | 2853 | return error(_("cannot cherry-pick during a revert.")); |
004fefa7 | 2854 | else |
93b3df6f | 2855 | return error(_("cannot revert during a cherry-pick.")); |
004fefa7 JS |
2856 | } |
2857 | ||
968492e4 JS |
2858 | if (is_rebase_i(opts)) { |
2859 | struct todo_list done = TODO_LIST_INIT; | |
2860 | ||
2861 | if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 && | |
5d94d545 | 2862 | !todo_list_parse_insn_buffer(r, done.buf.buf, &done)) |
968492e4 JS |
2863 | todo_list->done_nr = count_commands(&done); |
2864 | else | |
2865 | todo_list->done_nr = 0; | |
2866 | ||
2867 | todo_list->total_nr = todo_list->done_nr | |
2868 | + count_commands(todo_list); | |
968492e4 | 2869 | todo_list_release(&done); |
ef80069a | 2870 | |
3f34f2d8 | 2871 | todo_list_write_total_nr(todo_list); |
968492e4 JS |
2872 | } |
2873 | ||
0ae42a03 | 2874 | return 0; |
043a4492 RR |
2875 | } |
2876 | ||
03a4e260 JS |
2877 | static int git_config_string_dup(char **dest, |
2878 | const char *var, const char *value) | |
2879 | { | |
2880 | if (!value) | |
2881 | return config_error_nonbool(var); | |
2882 | free(*dest); | |
2883 | *dest = xstrdup(value); | |
2884 | return 0; | |
2885 | } | |
2886 | ||
043a4492 RR |
2887 | static int populate_opts_cb(const char *key, const char *value, void *data) |
2888 | { | |
2889 | struct replay_opts *opts = data; | |
2890 | int error_flag = 1; | |
2891 | ||
2892 | if (!value) | |
2893 | error_flag = 0; | |
2894 | else if (!strcmp(key, "options.no-commit")) | |
2895 | opts->no_commit = git_config_bool_or_int(key, value, &error_flag); | |
2896 | else if (!strcmp(key, "options.edit")) | |
2897 | opts->edit = git_config_bool_or_int(key, value, &error_flag); | |
6860ce5d PW |
2898 | else if (!strcmp(key, "options.allow-empty")) |
2899 | opts->allow_empty = | |
2900 | git_config_bool_or_int(key, value, &error_flag); | |
2901 | else if (!strcmp(key, "options.allow-empty-message")) | |
2902 | opts->allow_empty_message = | |
2903 | git_config_bool_or_int(key, value, &error_flag); | |
2904 | else if (!strcmp(key, "options.keep-redundant-commits")) | |
2905 | opts->keep_redundant_commits = | |
2906 | git_config_bool_or_int(key, value, &error_flag); | |
043a4492 RR |
2907 | else if (!strcmp(key, "options.signoff")) |
2908 | opts->signoff = git_config_bool_or_int(key, value, &error_flag); | |
2909 | else if (!strcmp(key, "options.record-origin")) | |
2910 | opts->record_origin = git_config_bool_or_int(key, value, &error_flag); | |
2911 | else if (!strcmp(key, "options.allow-ff")) | |
2912 | opts->allow_ff = git_config_bool_or_int(key, value, &error_flag); | |
2913 | else if (!strcmp(key, "options.mainline")) | |
2914 | opts->mainline = git_config_int(key, value); | |
2915 | else if (!strcmp(key, "options.strategy")) | |
03a4e260 | 2916 | git_config_string_dup(&opts->strategy, key, value); |
3253553e | 2917 | else if (!strcmp(key, "options.gpg-sign")) |
03a4e260 | 2918 | git_config_string_dup(&opts->gpg_sign, key, value); |
043a4492 | 2919 | else if (!strcmp(key, "options.strategy-option")) { |
fb60b9f3 | 2920 | strvec_push(&opts->xopts, value); |
8d8cb4b0 PW |
2921 | } else if (!strcmp(key, "options.allow-rerere-auto")) |
2922 | opts->allow_rerere_auto = | |
2923 | git_config_bool_or_int(key, value, &error_flag) ? | |
2924 | RERERE_AUTOUPDATE : RERERE_NOAUTOUPDATE; | |
dc42e9a8 PW |
2925 | else if (!strcmp(key, "options.default-msg-cleanup")) { |
2926 | opts->explicit_cleanup = 1; | |
2927 | opts->default_msg_cleanup = get_cleanup_mode(value, 1); | |
2928 | } else | |
93b3df6f | 2929 | return error(_("invalid key: %s"), key); |
043a4492 RR |
2930 | |
2931 | if (!error_flag) | |
1a8aea85 | 2932 | return error(_("invalid value for '%s': '%s'"), key, value); |
043a4492 RR |
2933 | |
2934 | return 0; | |
2935 | } | |
2936 | ||
4a8bc986 | 2937 | static void parse_strategy_opts(struct replay_opts *opts, char *raw_opts) |
ca6c6b45 JS |
2938 | { |
2939 | int i; | |
15a4cc91 | 2940 | int count; |
fb60b9f3 | 2941 | const char **argv; |
65850686 | 2942 | char *strategy_opts_string = raw_opts; |
ca6c6b45 | 2943 | |
0060041d EN |
2944 | if (*strategy_opts_string == ' ') |
2945 | strategy_opts_string++; | |
65850686 | 2946 | |
fb60b9f3 | 2947 | count = split_cmdline(strategy_opts_string, &argv); |
15a4cc91 | 2948 | if (count < 0) |
4960e5c7 | 2949 | BUG("could not split '%s': %s", strategy_opts_string, |
15a4cc91 | 2950 | split_cmdline_strerror(count)); |
fb60b9f3 PW |
2951 | for (i = 0; i < count; i++) { |
2952 | const char *arg = argv[i]; | |
ca6c6b45 JS |
2953 | |
2954 | skip_prefix(arg, "--", &arg); | |
fb60b9f3 | 2955 | strvec_push(&opts->xopts, arg); |
ca6c6b45 | 2956 | } |
fb60b9f3 | 2957 | free(argv); |
ca6c6b45 JS |
2958 | } |
2959 | ||
65850686 AG |
2960 | static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf) |
2961 | { | |
2962 | strbuf_reset(buf); | |
2963 | if (!read_oneliner(buf, rebase_path_strategy(), 0)) | |
2964 | return; | |
2965 | opts->strategy = strbuf_detach(buf, NULL); | |
2966 | if (!read_oneliner(buf, rebase_path_strategy_opts(), 0)) | |
2967 | return; | |
2968 | ||
2969 | parse_strategy_opts(opts, buf->buf); | |
2970 | } | |
2971 | ||
5adf9bdc | 2972 | static int read_populate_opts(struct replay_opts *opts) |
043a4492 | 2973 | { |
a1c75762 JS |
2974 | if (is_rebase_i(opts)) { |
2975 | struct strbuf buf = STRBUF_INIT; | |
65c425a2 | 2976 | int ret = 0; |
a1c75762 | 2977 | |
3442c3d1 DL |
2978 | if (read_oneliner(&buf, rebase_path_gpg_sign_opt(), |
2979 | READ_ONELINER_SKIP_IF_EMPTY)) { | |
a1c75762 JS |
2980 | if (!starts_with(buf.buf, "-S")) |
2981 | strbuf_reset(&buf); | |
2982 | else { | |
2983 | free(opts->gpg_sign); | |
2984 | opts->gpg_sign = xstrdup(buf.buf + 2); | |
2985 | } | |
9b6d7a62 PW |
2986 | strbuf_reset(&buf); |
2987 | } | |
2988 | ||
3442c3d1 DL |
2989 | if (read_oneliner(&buf, rebase_path_allow_rerere_autoupdate(), |
2990 | READ_ONELINER_SKIP_IF_EMPTY)) { | |
9b6d7a62 PW |
2991 | if (!strcmp(buf.buf, "--rerere-autoupdate")) |
2992 | opts->allow_rerere_auto = RERERE_AUTOUPDATE; | |
2993 | else if (!strcmp(buf.buf, "--no-rerere-autoupdate")) | |
2994 | opts->allow_rerere_auto = RERERE_NOAUTOUPDATE; | |
2995 | strbuf_reset(&buf); | |
a1c75762 | 2996 | } |
a1c75762 | 2997 | |
556907f1 JS |
2998 | if (file_exists(rebase_path_verbose())) |
2999 | opts->verbose = 1; | |
3000 | ||
899b49c4 EN |
3001 | if (file_exists(rebase_path_quiet())) |
3002 | opts->quiet = 1; | |
3003 | ||
a852ec7f PW |
3004 | if (file_exists(rebase_path_signoff())) { |
3005 | opts->allow_ff = 0; | |
3006 | opts->signoff = 1; | |
3007 | } | |
3008 | ||
7573cec5 PW |
3009 | if (file_exists(rebase_path_cdate_is_adate())) { |
3010 | opts->allow_ff = 0; | |
3011 | opts->committer_date_is_author_date = 1; | |
3012 | } | |
3013 | ||
a3894aad PW |
3014 | if (file_exists(rebase_path_ignore_date())) { |
3015 | opts->allow_ff = 0; | |
3016 | opts->ignore_date = 1; | |
3017 | } | |
3018 | ||
d421afa0 JS |
3019 | if (file_exists(rebase_path_reschedule_failed_exec())) |
3020 | opts->reschedule_failed_exec = 1; | |
e5b32bff ÆAB |
3021 | else if (file_exists(rebase_path_no_reschedule_failed_exec())) |
3022 | opts->reschedule_failed_exec = 0; | |
d421afa0 | 3023 | |
e98c4269 EN |
3024 | if (file_exists(rebase_path_drop_redundant_commits())) |
3025 | opts->drop_redundant_commits = 1; | |
3026 | ||
3027 | if (file_exists(rebase_path_keep_redundant_commits())) | |
3028 | opts->keep_redundant_commits = 1; | |
3029 | ||
ca6c6b45 | 3030 | read_strategy_opts(opts, &buf); |
65c425a2 | 3031 | strbuf_reset(&buf); |
ca6c6b45 | 3032 | |
e12a7ef5 | 3033 | if (read_oneliner(&opts->current_fixups, |
3442c3d1 DL |
3034 | rebase_path_current_fixups(), |
3035 | READ_ONELINER_SKIP_IF_EMPTY)) { | |
e12a7ef5 JS |
3036 | const char *p = opts->current_fixups.buf; |
3037 | opts->current_fixup_count = 1; | |
3038 | while ((p = strchr(p, '\n'))) { | |
3039 | opts->current_fixup_count++; | |
3040 | p++; | |
3041 | } | |
3042 | } | |
3043 | ||
d87d48b2 | 3044 | if (read_oneliner(&buf, rebase_path_squash_onto(), 0)) { |
d850b7a5 | 3045 | if (repo_get_oid_committish(the_repository, buf.buf, &opts->squash_onto) < 0) { |
65c425a2 DL |
3046 | ret = error(_("unusable squash-onto")); |
3047 | goto done_rebase_i; | |
3048 | } | |
d87d48b2 JS |
3049 | opts->have_squash_onto = 1; |
3050 | } | |
3051 | ||
65c425a2 DL |
3052 | done_rebase_i: |
3053 | strbuf_release(&buf); | |
3054 | return ret; | |
a1c75762 | 3055 | } |
b5a67045 | 3056 | |
f932729c | 3057 | if (!file_exists(git_path_opts_file())) |
0d00da7b JS |
3058 | return 0; |
3059 | /* | |
3060 | * The function git_parse_source(), called from git_config_from_file(), | |
3061 | * may die() in case of a syntactically incorrect file. We do not care | |
3062 | * about this case, though, because we wrote that file ourselves, so we | |
3063 | * are pretty certain that it is syntactically correct. | |
3064 | */ | |
5adf9bdc | 3065 | if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0) |
93b3df6f | 3066 | return error(_("malformed options sheet: '%s'"), |
0d00da7b JS |
3067 | git_path_opts_file()); |
3068 | return 0; | |
043a4492 RR |
3069 | } |
3070 | ||
65850686 AG |
3071 | static void write_strategy_opts(struct replay_opts *opts) |
3072 | { | |
65850686 AG |
3073 | struct strbuf buf = STRBUF_INIT; |
3074 | ||
4960e5c7 PW |
3075 | /* |
3076 | * Quote strategy options so that they can be read correctly | |
3077 | * by split_cmdline(). | |
3078 | */ | |
3079 | quote_cmdline(&buf, opts->xopts.v); | |
65850686 AG |
3080 | write_file(rebase_path_strategy_opts(), "%s\n", buf.buf); |
3081 | strbuf_release(&buf); | |
3082 | } | |
3083 | ||
3084 | int write_basic_state(struct replay_opts *opts, const char *head_name, | |
a2bb10d0 | 3085 | struct commit *onto, const struct object_id *orig_head) |
65850686 | 3086 | { |
65850686 AG |
3087 | if (head_name) |
3088 | write_file(rebase_path_head_name(), "%s\n", head_name); | |
3089 | if (onto) | |
7d3488eb PW |
3090 | write_file(rebase_path_onto(), "%s\n", |
3091 | oid_to_hex(&onto->object.oid)); | |
65850686 | 3092 | if (orig_head) |
a2bb10d0 PW |
3093 | write_file(rebase_path_orig_head(), "%s\n", |
3094 | oid_to_hex(orig_head)); | |
65850686 | 3095 | |
8a997ed1 EN |
3096 | if (opts->quiet) |
3097 | write_file(rebase_path_quiet(), "%s", ""); | |
65850686 | 3098 | if (opts->verbose) |
4af51741 | 3099 | write_file(rebase_path_verbose(), "%s", ""); |
65850686 AG |
3100 | if (opts->strategy) |
3101 | write_file(rebase_path_strategy(), "%s\n", opts->strategy); | |
fb60b9f3 | 3102 | if (opts->xopts.nr > 0) |
65850686 AG |
3103 | write_strategy_opts(opts); |
3104 | ||
3105 | if (opts->allow_rerere_auto == RERERE_AUTOUPDATE) | |
3106 | write_file(rebase_path_allow_rerere_autoupdate(), "--rerere-autoupdate\n"); | |
3107 | else if (opts->allow_rerere_auto == RERERE_NOAUTOUPDATE) | |
3108 | write_file(rebase_path_allow_rerere_autoupdate(), "--no-rerere-autoupdate\n"); | |
3109 | ||
3110 | if (opts->gpg_sign) | |
3111 | write_file(rebase_path_gpg_sign_opt(), "-S%s\n", opts->gpg_sign); | |
3112 | if (opts->signoff) | |
3113 | write_file(rebase_path_signoff(), "--signoff\n"); | |
e98c4269 EN |
3114 | if (opts->drop_redundant_commits) |
3115 | write_file(rebase_path_drop_redundant_commits(), "%s", ""); | |
3116 | if (opts->keep_redundant_commits) | |
3117 | write_file(rebase_path_keep_redundant_commits(), "%s", ""); | |
7573cec5 PW |
3118 | if (opts->committer_date_is_author_date) |
3119 | write_file(rebase_path_cdate_is_adate(), "%s", ""); | |
a3894aad PW |
3120 | if (opts->ignore_date) |
3121 | write_file(rebase_path_ignore_date(), "%s", ""); | |
d421afa0 JS |
3122 | if (opts->reschedule_failed_exec) |
3123 | write_file(rebase_path_reschedule_failed_exec(), "%s", ""); | |
e5b32bff ÆAB |
3124 | else |
3125 | write_file(rebase_path_no_reschedule_failed_exec(), "%s", ""); | |
65850686 AG |
3126 | |
3127 | return 0; | |
3128 | } | |
3129 | ||
004fefa7 | 3130 | static int walk_revs_populate_todo(struct todo_list *todo_list, |
043a4492 RR |
3131 | struct replay_opts *opts) |
3132 | { | |
004fefa7 JS |
3133 | enum todo_command command = opts->action == REPLAY_PICK ? |
3134 | TODO_PICK : TODO_REVERT; | |
414697a9 | 3135 | const char *command_string = todo_command_info[command].str; |
019a9d83 | 3136 | const char *encoding; |
043a4492 | 3137 | struct commit *commit; |
043a4492 | 3138 | |
34b0528b JS |
3139 | if (prepare_revs(opts)) |
3140 | return -1; | |
043a4492 | 3141 | |
019a9d83 ĐTCD |
3142 | encoding = get_log_output_encoding(); |
3143 | ||
004fefa7 JS |
3144 | while ((commit = get_revision(opts->revs))) { |
3145 | struct todo_item *item = append_new_todo(todo_list); | |
ecb5091f ÆAB |
3146 | const char *commit_buffer = repo_logmsg_reencode(the_repository, |
3147 | commit, NULL, | |
3148 | encoding); | |
004fefa7 JS |
3149 | const char *subject; |
3150 | int subject_len; | |
3151 | ||
3152 | item->command = command; | |
3153 | item->commit = commit; | |
6ad656db | 3154 | item->arg_offset = 0; |
c22f7dfb | 3155 | item->arg_len = 0; |
004fefa7 JS |
3156 | item->offset_in_buf = todo_list->buf.len; |
3157 | subject_len = find_commit_subject(commit_buffer, &subject); | |
3158 | strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string, | |
3159 | short_commit_name(commit), subject_len, subject); | |
ecb5091f ÆAB |
3160 | repo_unuse_commit_buffer(the_repository, commit, |
3161 | commit_buffer); | |
004fefa7 | 3162 | } |
8530c739 JK |
3163 | |
3164 | if (!todo_list->nr) | |
3165 | return error(_("empty commit set passed")); | |
3166 | ||
34b0528b | 3167 | return 0; |
043a4492 RR |
3168 | } |
3169 | ||
6a1f9046 | 3170 | static int create_seq_dir(struct repository *r) |
043a4492 | 3171 | { |
6a1f9046 RA |
3172 | enum replay_action action; |
3173 | const char *in_progress_error = NULL; | |
3174 | const char *in_progress_advice = NULL; | |
c8e4159e | 3175 | unsigned int advise_skip = |
b8825ef2 | 3176 | refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD") || |
c8e4159e | 3177 | refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD"); |
6a1f9046 RA |
3178 | |
3179 | if (!sequencer_get_last_command(r, &action)) { | |
3180 | switch (action) { | |
3181 | case REPLAY_REVERT: | |
3182 | in_progress_error = _("revert is already in progress"); | |
3183 | in_progress_advice = | |
dcb500dc | 3184 | _("try \"git revert (--continue | %s--abort | --quit)\""); |
6a1f9046 RA |
3185 | break; |
3186 | case REPLAY_PICK: | |
3187 | in_progress_error = _("cherry-pick is already in progress"); | |
3188 | in_progress_advice = | |
dcb500dc | 3189 | _("try \"git cherry-pick (--continue | %s--abort | --quit)\""); |
6a1f9046 RA |
3190 | break; |
3191 | default: | |
3192 | BUG("unexpected action in create_seq_dir"); | |
3193 | } | |
3194 | } | |
3195 | if (in_progress_error) { | |
3196 | error("%s", in_progress_error); | |
ed9bff08 | 3197 | if (advice_enabled(ADVICE_SEQUENCER_IN_USE)) |
dcb500dc RA |
3198 | advise(in_progress_advice, |
3199 | advise_skip ? "--skip | " : ""); | |
043a4492 | 3200 | return -1; |
6a1f9046 RA |
3201 | } |
3202 | if (mkdir(git_path_seq_dir(), 0777) < 0) | |
93b3df6f | 3203 | return error_errno(_("could not create sequencer directory '%s'"), |
f6e82b0d | 3204 | git_path_seq_dir()); |
6a1f9046 | 3205 | |
043a4492 RR |
3206 | return 0; |
3207 | } | |
3208 | ||
311fd397 | 3209 | static int save_head(const char *head) |
043a4492 | 3210 | { |
54dbd093 | 3211 | return write_message(head, strlen(head), git_path_head_file(), 1); |
043a4492 RR |
3212 | } |
3213 | ||
1e41229d SB |
3214 | static int rollback_is_safe(void) |
3215 | { | |
3216 | struct strbuf sb = STRBUF_INIT; | |
3217 | struct object_id expected_head, actual_head; | |
3218 | ||
3219 | if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) { | |
3220 | strbuf_trim(&sb); | |
3221 | if (get_oid_hex(sb.buf, &expected_head)) { | |
3222 | strbuf_release(&sb); | |
3223 | die(_("could not parse %s"), git_path_abort_safety_file()); | |
3224 | } | |
3225 | strbuf_release(&sb); | |
3226 | } | |
3227 | else if (errno == ENOENT) | |
3228 | oidclr(&expected_head); | |
3229 | else | |
3230 | die_errno(_("could not read '%s'"), git_path_abort_safety_file()); | |
3231 | ||
d850b7a5 | 3232 | if (repo_get_oid(the_repository, "HEAD", &actual_head)) |
1e41229d SB |
3233 | oidclr(&actual_head); |
3234 | ||
4a7e27e9 | 3235 | return oideq(&actual_head, &expected_head); |
1e41229d SB |
3236 | } |
3237 | ||
918d1e6e | 3238 | static int reset_merge(const struct object_id *oid) |
043a4492 | 3239 | { |
0e906739 | 3240 | struct child_process cmd = CHILD_PROCESS_INIT; |
1e41229d | 3241 | |
0e906739 RS |
3242 | cmd.git_cmd = 1; |
3243 | strvec_pushl(&cmd.args, "reset", "--merge", NULL); | |
265ab48f RA |
3244 | |
3245 | if (!is_null_oid(oid)) | |
0e906739 | 3246 | strvec_push(&cmd.args, oid_to_hex(oid)); |
265ab48f | 3247 | |
0e906739 | 3248 | return run_command(&cmd); |
043a4492 RR |
3249 | } |
3250 | ||
005af339 | 3251 | static int rollback_single_pick(struct repository *r) |
043a4492 | 3252 | { |
092bbcdf | 3253 | struct object_id head_oid; |
043a4492 | 3254 | |
c8e4159e | 3255 | if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") && |
b8825ef2 | 3256 | !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) |
043a4492 | 3257 | return error(_("no cherry-pick or revert in progress")); |
34c290a6 | 3258 | if (read_ref_full("HEAD", 0, &head_oid, NULL)) |
043a4492 | 3259 | return error(_("cannot resolve HEAD")); |
092bbcdf | 3260 | if (is_null_oid(&head_oid)) |
043a4492 | 3261 | return error(_("cannot abort from a branch yet to be born")); |
918d1e6e | 3262 | return reset_merge(&head_oid); |
043a4492 RR |
3263 | } |
3264 | ||
de81ca3f RA |
3265 | static int skip_single_pick(void) |
3266 | { | |
3267 | struct object_id head; | |
3268 | ||
3269 | if (read_ref_full("HEAD", 0, &head, NULL)) | |
3270 | return error(_("cannot resolve HEAD")); | |
3271 | return reset_merge(&head); | |
043a4492 RR |
3272 | } |
3273 | ||
005af339 | 3274 | int sequencer_rollback(struct repository *r, struct replay_opts *opts) |
043a4492 | 3275 | { |
043a4492 | 3276 | FILE *f; |
092bbcdf | 3277 | struct object_id oid; |
043a4492 | 3278 | struct strbuf buf = STRBUF_INIT; |
092bbcdf | 3279 | const char *p; |
043a4492 | 3280 | |
f932729c | 3281 | f = fopen(git_path_head_file(), "r"); |
043a4492 RR |
3282 | if (!f && errno == ENOENT) { |
3283 | /* | |
3284 | * There is no multiple-cherry-pick in progress. | |
3285 | * If CHERRY_PICK_HEAD or REVERT_HEAD indicates | |
3286 | * a single-cherry-pick in progress, abort that. | |
3287 | */ | |
005af339 | 3288 | return rollback_single_pick(r); |
043a4492 RR |
3289 | } |
3290 | if (!f) | |
f7ed1953 | 3291 | return error_errno(_("cannot open '%s'"), git_path_head_file()); |
8f309aeb | 3292 | if (strbuf_getline_lf(&buf, f)) { |
f7ed1953 | 3293 | error(_("cannot read '%s': %s"), git_path_head_file(), |
f932729c | 3294 | ferror(f) ? strerror(errno) : _("unexpected end of file")); |
043a4492 RR |
3295 | fclose(f); |
3296 | goto fail; | |
3297 | } | |
3298 | fclose(f); | |
092bbcdf | 3299 | if (parse_oid_hex(buf.buf, &oid, &p) || *p != '\0') { |
043a4492 | 3300 | error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"), |
f932729c | 3301 | git_path_head_file()); |
043a4492 RR |
3302 | goto fail; |
3303 | } | |
092bbcdf | 3304 | if (is_null_oid(&oid)) { |
0f974e21 MG |
3305 | error(_("cannot abort from a branch yet to be born")); |
3306 | goto fail; | |
3307 | } | |
1e41229d SB |
3308 | |
3309 | if (!rollback_is_safe()) { | |
3310 | /* Do not error, just do not rollback */ | |
3311 | warning(_("You seem to have moved HEAD. " | |
3312 | "Not rewinding, check your HEAD!")); | |
3313 | } else | |
918d1e6e | 3314 | if (reset_merge(&oid)) |
043a4492 | 3315 | goto fail; |
043a4492 | 3316 | strbuf_release(&buf); |
2863584f | 3317 | return sequencer_remove_state(opts); |
043a4492 RR |
3318 | fail: |
3319 | strbuf_release(&buf); | |
3320 | return -1; | |
3321 | } | |
3322 | ||
de81ca3f RA |
3323 | int sequencer_skip(struct repository *r, struct replay_opts *opts) |
3324 | { | |
3325 | enum replay_action action = -1; | |
3326 | sequencer_get_last_command(r, &action); | |
3327 | ||
3328 | /* | |
3329 | * Check whether the subcommand requested to skip the commit is actually | |
3330 | * in progress and that it's safe to skip the commit. | |
3331 | * | |
3332 | * opts->action tells us which subcommand requested to skip the commit. | |
3333 | * If the corresponding .git/<ACTION>_HEAD exists, we know that the | |
3334 | * action is in progress and we can skip the commit. | |
3335 | * | |
3336 | * Otherwise we check that the last instruction was related to the | |
3337 | * particular subcommand we're trying to execute and barf if that's not | |
3338 | * the case. | |
3339 | * | |
3340 | * Finally we check that the rollback is "safe", i.e., has the HEAD | |
3341 | * moved? In this case, it doesn't make sense to "reset the merge" and | |
3342 | * "skip the commit" as the user already handled this by committing. But | |
3343 | * we'd not want to barf here, instead give advice on how to proceed. We | |
3344 | * only need to check that when .git/<ACTION>_HEAD doesn't exist because | |
3345 | * it gets removed when the user commits, so if it still exists we're | |
3346 | * sure the user can't have committed before. | |
3347 | */ | |
3348 | switch (opts->action) { | |
3349 | case REPLAY_REVERT: | |
b8825ef2 | 3350 | if (!refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) { |
de81ca3f RA |
3351 | if (action != REPLAY_REVERT) |
3352 | return error(_("no revert in progress")); | |
3353 | if (!rollback_is_safe()) | |
3354 | goto give_advice; | |
3355 | } | |
3356 | break; | |
3357 | case REPLAY_PICK: | |
c8e4159e HWN |
3358 | if (!refs_ref_exists(get_main_ref_store(r), |
3359 | "CHERRY_PICK_HEAD")) { | |
de81ca3f RA |
3360 | if (action != REPLAY_PICK) |
3361 | return error(_("no cherry-pick in progress")); | |
3362 | if (!rollback_is_safe()) | |
3363 | goto give_advice; | |
3364 | } | |
3365 | break; | |
3366 | default: | |
3367 | BUG("unexpected action in sequencer_skip"); | |
3368 | } | |
3369 | ||
3370 | if (skip_single_pick()) | |
3371 | return error(_("failed to skip the commit")); | |
3372 | if (!is_directory(git_path_seq_dir())) | |
3373 | return 0; | |
3374 | ||
3375 | return sequencer_continue(r, opts); | |
3376 | ||
3377 | give_advice: | |
3378 | error(_("there is nothing to skip")); | |
3379 | ||
ed9bff08 | 3380 | if (advice_enabled(ADVICE_RESOLVE_CONFLICT)) { |
de81ca3f RA |
3381 | advise(_("have you committed already?\n" |
3382 | "try \"git %s --continue\""), | |
3383 | action == REPLAY_REVERT ? "revert" : "cherry-pick"); | |
3384 | } | |
3385 | return -1; | |
3386 | } | |
3387 | ||
004fefa7 | 3388 | static int save_todo(struct todo_list *todo_list, struct replay_opts *opts) |
043a4492 | 3389 | { |
14bca6c6 | 3390 | struct lock_file todo_lock = LOCK_INIT; |
004fefa7 JS |
3391 | const char *todo_path = get_todo_path(opts); |
3392 | int next = todo_list->current, offset, fd; | |
043a4492 | 3393 | |
84583957 JS |
3394 | /* |
3395 | * rebase -i writes "git-rebase-todo" without the currently executing | |
3396 | * command, appending it to "done" instead. | |
3397 | */ | |
3398 | if (is_rebase_i(opts)) | |
3399 | next++; | |
3400 | ||
004fefa7 | 3401 | fd = hold_lock_file_for_update(&todo_lock, todo_path, 0); |
221675de | 3402 | if (fd < 0) |
93b3df6f | 3403 | return error_errno(_("could not lock '%s'"), todo_path); |
a01c2a5f | 3404 | offset = get_item_line_offset(todo_list, next); |
004fefa7 JS |
3405 | if (write_in_full(fd, todo_list->buf.buf + offset, |
3406 | todo_list->buf.len - offset) < 0) | |
93b3df6f | 3407 | return error_errno(_("could not write to '%s'"), todo_path); |
004fefa7 | 3408 | if (commit_lock_file(&todo_lock) < 0) |
350292a1 | 3409 | return error(_("failed to finalize '%s'"), todo_path); |
1df6df0c | 3410 | |
a01c2a5f JS |
3411 | if (is_rebase_i(opts) && next > 0) { |
3412 | const char *done = rebase_path_done(); | |
3413 | int fd = open(done, O_CREAT | O_WRONLY | O_APPEND, 0666); | |
3414 | int ret = 0; | |
1df6df0c | 3415 | |
a01c2a5f JS |
3416 | if (fd < 0) |
3417 | return 0; | |
3418 | if (write_in_full(fd, get_item_line(todo_list, next - 1), | |
3419 | get_item_line_length(todo_list, next - 1)) | |
3420 | < 0) | |
3421 | ret = error_errno(_("could not write to '%s'"), done); | |
3422 | if (close(fd) < 0) | |
3423 | ret = error_errno(_("failed to finalize '%s'"), done); | |
3424 | return ret; | |
1df6df0c | 3425 | } |
221675de | 3426 | return 0; |
043a4492 RR |
3427 | } |
3428 | ||
88d5a271 | 3429 | static int save_opts(struct replay_opts *opts) |
043a4492 | 3430 | { |
f932729c | 3431 | const char *opts_file = git_path_opts_file(); |
88d5a271 | 3432 | int res = 0; |
043a4492 RR |
3433 | |
3434 | if (opts->no_commit) | |
f59199d5 PW |
3435 | res |= git_config_set_in_file_gently(opts_file, |
3436 | "options.no-commit", "true"); | |
39edfd5c EN |
3437 | if (opts->edit >= 0) |
3438 | res |= git_config_set_in_file_gently(opts_file, "options.edit", | |
3439 | opts->edit ? "true" : "false"); | |
6860ce5d PW |
3440 | if (opts->allow_empty) |
3441 | res |= git_config_set_in_file_gently(opts_file, | |
3442 | "options.allow-empty", "true"); | |
3443 | if (opts->allow_empty_message) | |
3444 | res |= git_config_set_in_file_gently(opts_file, | |
3445 | "options.allow-empty-message", "true"); | |
3446 | if (opts->keep_redundant_commits) | |
3447 | res |= git_config_set_in_file_gently(opts_file, | |
3448 | "options.keep-redundant-commits", "true"); | |
043a4492 | 3449 | if (opts->signoff) |
f59199d5 PW |
3450 | res |= git_config_set_in_file_gently(opts_file, |
3451 | "options.signoff", "true"); | |
043a4492 | 3452 | if (opts->record_origin) |
f59199d5 PW |
3453 | res |= git_config_set_in_file_gently(opts_file, |
3454 | "options.record-origin", "true"); | |
043a4492 | 3455 | if (opts->allow_ff) |
f59199d5 PW |
3456 | res |= git_config_set_in_file_gently(opts_file, |
3457 | "options.allow-ff", "true"); | |
043a4492 RR |
3458 | if (opts->mainline) { |
3459 | struct strbuf buf = STRBUF_INIT; | |
3460 | strbuf_addf(&buf, "%d", opts->mainline); | |
f59199d5 PW |
3461 | res |= git_config_set_in_file_gently(opts_file, |
3462 | "options.mainline", buf.buf); | |
043a4492 RR |
3463 | strbuf_release(&buf); |
3464 | } | |
3465 | if (opts->strategy) | |
f59199d5 PW |
3466 | res |= git_config_set_in_file_gently(opts_file, |
3467 | "options.strategy", opts->strategy); | |
3253553e | 3468 | if (opts->gpg_sign) |
f59199d5 PW |
3469 | res |= git_config_set_in_file_gently(opts_file, |
3470 | "options.gpg-sign", opts->gpg_sign); | |
fb60b9f3 PW |
3471 | for (size_t i = 0; i < opts->xopts.nr; i++) |
3472 | res |= git_config_set_multivar_in_file_gently(opts_file, | |
3473 | "options.strategy-option", | |
3474 | opts->xopts.v[i], "^$", 0); | |
8d8cb4b0 | 3475 | if (opts->allow_rerere_auto) |
f59199d5 PW |
3476 | res |= git_config_set_in_file_gently(opts_file, |
3477 | "options.allow-rerere-auto", | |
3478 | opts->allow_rerere_auto == RERERE_AUTOUPDATE ? | |
3479 | "true" : "false"); | |
dc42e9a8 PW |
3480 | |
3481 | if (opts->explicit_cleanup) | |
3482 | res |= git_config_set_in_file_gently(opts_file, | |
3483 | "options.default-msg-cleanup", | |
3484 | describe_cleanup_mode(opts->default_msg_cleanup)); | |
88d5a271 | 3485 | return res; |
043a4492 RR |
3486 | } |
3487 | ||
f11c9580 NTND |
3488 | static int make_patch(struct repository *r, |
3489 | struct commit *commit, | |
3490 | struct replay_opts *opts) | |
56dc3ab0 JS |
3491 | { |
3492 | struct strbuf buf = STRBUF_INIT; | |
3493 | struct rev_info log_tree_opt; | |
0512eabd JH |
3494 | const char *subject; |
3495 | char hex[GIT_MAX_HEXSZ + 1]; | |
56dc3ab0 JS |
3496 | int res = 0; |
3497 | ||
0512eabd JH |
3498 | oid_to_hex_r(hex, &commit->object.oid); |
3499 | if (write_message(hex, strlen(hex), rebase_path_stopped_sha(), 1) < 0) | |
56dc3ab0 | 3500 | return -1; |
430b75f7 | 3501 | res |= write_rebase_head(&commit->object.oid); |
56dc3ab0 JS |
3502 | |
3503 | strbuf_addf(&buf, "%s/patch", get_dir(opts)); | |
3504 | memset(&log_tree_opt, 0, sizeof(log_tree_opt)); | |
f11c9580 | 3505 | repo_init_revisions(r, &log_tree_opt, NULL); |
56dc3ab0 JS |
3506 | log_tree_opt.abbrev = 0; |
3507 | log_tree_opt.diff = 1; | |
3508 | log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH; | |
3509 | log_tree_opt.disable_stdin = 1; | |
3510 | log_tree_opt.no_commit_id = 1; | |
3511 | log_tree_opt.diffopt.file = fopen(buf.buf, "w"); | |
3512 | log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER; | |
3513 | if (!log_tree_opt.diffopt.file) | |
3514 | res |= error_errno(_("could not open '%s'"), buf.buf); | |
3515 | else { | |
3516 | res |= log_tree_commit(&log_tree_opt, commit); | |
3517 | fclose(log_tree_opt.diffopt.file); | |
3518 | } | |
3519 | strbuf_reset(&buf); | |
3520 | ||
3521 | strbuf_addf(&buf, "%s/message", get_dir(opts)); | |
3522 | if (!file_exists(buf.buf)) { | |
52f52e5a | 3523 | const char *encoding = get_commit_output_encoding(); |
4a93b899 | 3524 | const char *commit_buffer = repo_logmsg_reencode(r, |
ecb5091f ÆAB |
3525 | commit, NULL, |
3526 | encoding); | |
56dc3ab0 JS |
3527 | find_commit_subject(commit_buffer, &subject); |
3528 | res |= write_message(subject, strlen(subject), buf.buf, 1); | |
4a93b899 | 3529 | repo_unuse_commit_buffer(r, commit, |
ecb5091f | 3530 | commit_buffer); |
56dc3ab0 JS |
3531 | } |
3532 | strbuf_release(&buf); | |
2108fe4a | 3533 | release_revisions(&log_tree_opt); |
56dc3ab0 JS |
3534 | |
3535 | return res; | |
3536 | } | |
3537 | ||
3538 | static int intend_to_amend(void) | |
3539 | { | |
092bbcdf | 3540 | struct object_id head; |
56dc3ab0 JS |
3541 | char *p; |
3542 | ||
d850b7a5 | 3543 | if (repo_get_oid(the_repository, "HEAD", &head)) |
56dc3ab0 JS |
3544 | return error(_("cannot read HEAD")); |
3545 | ||
092bbcdf | 3546 | p = oid_to_hex(&head); |
56dc3ab0 JS |
3547 | return write_message(p, strlen(p), rebase_path_amend(), 1); |
3548 | } | |
3549 | ||
f11c9580 NTND |
3550 | static int error_with_patch(struct repository *r, |
3551 | struct commit *commit, | |
3552 | const char *subject, int subject_len, | |
3553 | struct replay_opts *opts, | |
3554 | int exit_code, int to_amend) | |
56dc3ab0 | 3555 | { |
bc9238bb | 3556 | if (commit) { |
f11c9580 | 3557 | if (make_patch(r, commit, opts)) |
bc9238bb | 3558 | return -1; |
5a5c5e95 | 3559 | } else if (copy_file(rebase_path_message(), |
f11c9580 | 3560 | git_path_merge_msg(r), 0666)) |
bc9238bb | 3561 | return error(_("unable to copy '%s' to '%s'"), |
f11c9580 | 3562 | git_path_merge_msg(r), rebase_path_message()); |
56dc3ab0 JS |
3563 | |
3564 | if (to_amend) { | |
3565 | if (intend_to_amend()) | |
3566 | return -1; | |
3567 | ||
02127c63 NTND |
3568 | fprintf(stderr, |
3569 | _("You can amend the commit now, with\n" | |
3570 | "\n" | |
3571 | " git commit --amend %s\n" | |
3572 | "\n" | |
3573 | "Once you are satisfied with your changes, run\n" | |
3574 | "\n" | |
3575 | " git rebase --continue\n"), | |
3576 | gpg_sign_opt_quoted(opts)); | |
bc9238bb PW |
3577 | } else if (exit_code) { |
3578 | if (commit) | |
5a5c5e95 JH |
3579 | fprintf_ln(stderr, _("Could not apply %s... %.*s"), |
3580 | short_commit_name(commit), subject_len, subject); | |
bc9238bb PW |
3581 | else |
3582 | /* | |
3583 | * We don't have the hash of the parent so | |
3584 | * just print the line from the todo file. | |
3585 | */ | |
5a5c5e95 JH |
3586 | fprintf_ln(stderr, _("Could not merge %.*s"), |
3587 | subject_len, subject); | |
bc9238bb | 3588 | } |
56dc3ab0 JS |
3589 | |
3590 | return exit_code; | |
3591 | } | |
3592 | ||
f11c9580 NTND |
3593 | static int error_failed_squash(struct repository *r, |
3594 | struct commit *commit, | |
3595 | struct replay_opts *opts, | |
3596 | int subject_len, | |
3597 | const char *subject) | |
6e98de72 | 3598 | { |
e12a7ef5 JS |
3599 | if (copy_file(rebase_path_message(), rebase_path_squash_msg(), 0666)) |
3600 | return error(_("could not copy '%s' to '%s'"), | |
6e98de72 | 3601 | rebase_path_squash_msg(), rebase_path_message()); |
f11c9580 NTND |
3602 | unlink(git_path_merge_msg(r)); |
3603 | if (copy_file(git_path_merge_msg(r), rebase_path_message(), 0666)) | |
6e98de72 | 3604 | return error(_("could not copy '%s' to '%s'"), |
102de880 | 3605 | rebase_path_message(), |
f11c9580 NTND |
3606 | git_path_merge_msg(r)); |
3607 | return error_with_patch(r, commit, subject, subject_len, opts, 1, 0); | |
6e98de72 JS |
3608 | } |
3609 | ||
f11c9580 | 3610 | static int do_exec(struct repository *r, const char *command_line) |
311af526 | 3611 | { |
ddbb47fd | 3612 | struct child_process cmd = CHILD_PROCESS_INIT; |
311af526 JS |
3613 | int dirty, status; |
3614 | ||
4d55d63b | 3615 | fprintf(stderr, _("Executing: %s\n"), command_line); |
ddbb47fd RS |
3616 | cmd.use_shell = 1; |
3617 | strvec_push(&cmd.args, command_line); | |
3618 | status = run_command(&cmd); | |
311af526 JS |
3619 | |
3620 | /* force re-reading of the cache */ | |
9c5f3ee3 ÆAB |
3621 | discard_index(r->index); |
3622 | if (repo_read_index(r) < 0) | |
311af526 JS |
3623 | return error(_("could not read index")); |
3624 | ||
f11c9580 | 3625 | dirty = require_clean_work_tree(r, "rebase", NULL, 1, 1); |
311af526 JS |
3626 | |
3627 | if (status) { | |
3628 | warning(_("execution failed: %s\n%s" | |
3629 | "You can fix the problem, and then run\n" | |
3630 | "\n" | |
3631 | " git rebase --continue\n" | |
3632 | "\n"), | |
3633 | command_line, | |
d45cbe3f | 3634 | dirty ? _("and made changes to the index and/or the " |
b734fe49 | 3635 | "working tree.\n") : ""); |
311af526 JS |
3636 | if (status == 127) |
3637 | /* command not found */ | |
3638 | status = 1; | |
3639 | } else if (dirty) { | |
3640 | warning(_("execution succeeded: %s\nbut " | |
b734fe49 | 3641 | "left changes to the index and/or the working tree.\n" |
311af526 JS |
3642 | "Commit or stash your changes, and then run\n" |
3643 | "\n" | |
3644 | " git rebase --continue\n" | |
3645 | "\n"), command_line); | |
3646 | status = 1; | |
3647 | } | |
3648 | ||
3649 | return status; | |
3650 | } | |
3651 | ||
48ca53ca | 3652 | __attribute__((format (printf, 2, 3))) |
9055e401 JS |
3653 | static int safe_append(const char *filename, const char *fmt, ...) |
3654 | { | |
3655 | va_list ap; | |
3656 | struct lock_file lock = LOCK_INIT; | |
3657 | int fd = hold_lock_file_for_update(&lock, filename, | |
3658 | LOCK_REPORT_ON_ERROR); | |
3659 | struct strbuf buf = STRBUF_INIT; | |
3660 | ||
3661 | if (fd < 0) | |
3662 | return -1; | |
3663 | ||
3664 | if (strbuf_read_file(&buf, filename, 0) < 0 && errno != ENOENT) { | |
3665 | error_errno(_("could not read '%s'"), filename); | |
3666 | rollback_lock_file(&lock); | |
3667 | return -1; | |
3668 | } | |
3669 | strbuf_complete(&buf, '\n'); | |
3670 | va_start(ap, fmt); | |
3671 | strbuf_vaddf(&buf, fmt, ap); | |
3672 | va_end(ap); | |
3673 | ||
3674 | if (write_in_full(fd, buf.buf, buf.len) < 0) { | |
3675 | error_errno(_("could not write to '%s'"), filename); | |
3676 | strbuf_release(&buf); | |
3677 | rollback_lock_file(&lock); | |
3678 | return -1; | |
3679 | } | |
3680 | if (commit_lock_file(&lock) < 0) { | |
3681 | strbuf_release(&buf); | |
9055e401 JS |
3682 | return error(_("failed to finalize '%s'"), filename); |
3683 | } | |
3684 | ||
3685 | strbuf_release(&buf); | |
3686 | return 0; | |
3687 | } | |
3688 | ||
f11c9580 | 3689 | static int do_label(struct repository *r, const char *name, int len) |
9055e401 | 3690 | { |
f11c9580 | 3691 | struct ref_store *refs = get_main_ref_store(r); |
9055e401 JS |
3692 | struct ref_transaction *transaction; |
3693 | struct strbuf ref_name = STRBUF_INIT, err = STRBUF_INIT; | |
3694 | struct strbuf msg = STRBUF_INIT; | |
3695 | int ret = 0; | |
3696 | struct object_id head_oid; | |
3697 | ||
3698 | if (len == 1 && *name == '#') | |
02127c63 | 3699 | return error(_("illegal label name: '%.*s'"), len, name); |
9055e401 JS |
3700 | |
3701 | strbuf_addf(&ref_name, "refs/rewritten/%.*s", len, name); | |
c2417d3a | 3702 | strbuf_addf(&msg, "rebase (label) '%.*s'", len, name); |
9055e401 | 3703 | |
c6da34a6 | 3704 | transaction = ref_store_transaction_begin(refs, &err); |
9055e401 JS |
3705 | if (!transaction) { |
3706 | error("%s", err.buf); | |
3707 | ret = -1; | |
4a93b899 | 3708 | } else if (repo_get_oid(r, "HEAD", &head_oid)) { |
9055e401 JS |
3709 | error(_("could not read HEAD")); |
3710 | ret = -1; | |
3711 | } else if (ref_transaction_update(transaction, ref_name.buf, &head_oid, | |
3712 | NULL, 0, msg.buf, &err) < 0 || | |
3713 | ref_transaction_commit(transaction, &err)) { | |
3714 | error("%s", err.buf); | |
3715 | ret = -1; | |
3716 | } | |
3717 | ref_transaction_free(transaction); | |
3718 | strbuf_release(&err); | |
3719 | strbuf_release(&msg); | |
3720 | ||
3721 | if (!ret) | |
3722 | ret = safe_append(rebase_path_refs_to_delete(), | |
3723 | "%s\n", ref_name.buf); | |
3724 | strbuf_release(&ref_name); | |
3725 | ||
3726 | return ret; | |
3727 | } | |
3728 | ||
d188a60d PW |
3729 | static const char *sequencer_reflog_action(struct replay_opts *opts) |
3730 | { | |
3731 | if (!opts->reflog_action) { | |
3732 | opts->reflog_action = getenv(GIT_REFLOG_ACTION); | |
3733 | opts->reflog_action = | |
3734 | xstrdup(opts->reflog_action ? opts->reflog_action | |
3735 | : action_name(opts)); | |
3736 | } | |
3737 | ||
3738 | return opts->reflog_action; | |
3739 | } | |
3740 | ||
48ca53ca | 3741 | __attribute__((format (printf, 3, 4))) |
9055e401 | 3742 | static const char *reflog_message(struct replay_opts *opts, |
d4ac3050 ÆAB |
3743 | const char *sub_action, const char *fmt, ...) |
3744 | { | |
3745 | va_list ap; | |
3746 | static struct strbuf buf = STRBUF_INIT; | |
d4ac3050 ÆAB |
3747 | |
3748 | va_start(ap, fmt); | |
3749 | strbuf_reset(&buf); | |
d188a60d | 3750 | strbuf_addstr(&buf, sequencer_reflog_action(opts)); |
d4ac3050 ÆAB |
3751 | if (sub_action) |
3752 | strbuf_addf(&buf, " (%s)", sub_action); | |
3753 | if (fmt) { | |
3754 | strbuf_addstr(&buf, ": "); | |
3755 | strbuf_vaddf(&buf, fmt, ap); | |
3756 | } | |
3757 | va_end(ap); | |
3758 | ||
3759 | return buf.buf; | |
3760 | } | |
9055e401 | 3761 | |
688d82f2 PW |
3762 | static struct commit *lookup_label(struct repository *r, const char *label, |
3763 | int len, struct strbuf *buf) | |
82766b29 PW |
3764 | { |
3765 | struct commit *commit; | |
688d82f2 | 3766 | struct object_id oid; |
82766b29 PW |
3767 | |
3768 | strbuf_reset(buf); | |
3769 | strbuf_addf(buf, "refs/rewritten/%.*s", len, label); | |
688d82f2 PW |
3770 | if (!read_ref(buf->buf, &oid)) { |
3771 | commit = lookup_commit_object(r, &oid); | |
3772 | } else { | |
82766b29 PW |
3773 | /* fall back to non-rewritten ref or commit */ |
3774 | strbuf_splice(buf, 0, strlen("refs/rewritten/"), "", 0); | |
3775 | commit = lookup_commit_reference_by_name(buf->buf); | |
3776 | } | |
3777 | ||
3778 | if (!commit) | |
3779 | error(_("could not resolve '%s'"), buf->buf); | |
3780 | ||
3781 | return commit; | |
3782 | } | |
3783 | ||
f11c9580 NTND |
3784 | static int do_reset(struct repository *r, |
3785 | const char *name, int len, | |
3786 | struct replay_opts *opts) | |
9055e401 JS |
3787 | { |
3788 | struct strbuf ref_name = STRBUF_INIT; | |
3789 | struct object_id oid; | |
3790 | struct lock_file lock = LOCK_INIT; | |
0c52cf8e | 3791 | struct tree_desc desc = { 0 }; |
9055e401 | 3792 | struct tree *tree; |
6e658547 | 3793 | struct unpack_trees_options unpack_tree_opts = { 0 }; |
71571cd7 | 3794 | int ret = 0; |
9055e401 | 3795 | |
3a95f31d | 3796 | if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) |
9055e401 JS |
3797 | return -1; |
3798 | ||
ebddf393 JS |
3799 | if (len == 10 && !strncmp("[new root]", name, len)) { |
3800 | if (!opts->have_squash_onto) { | |
3801 | const char *hex; | |
3802 | if (commit_tree("", 0, the_hash_algo->empty_tree, | |
3803 | NULL, &opts->squash_onto, | |
3804 | NULL, NULL)) | |
3805 | return error(_("writing fake root commit")); | |
3806 | opts->have_squash_onto = 1; | |
3807 | hex = oid_to_hex(&opts->squash_onto); | |
3808 | if (write_message(hex, strlen(hex), | |
3809 | rebase_path_squash_onto(), 0)) | |
3810 | return error(_("writing squash-onto")); | |
3811 | } | |
3812 | oidcpy(&oid, &opts->squash_onto); | |
3813 | } else { | |
71571cd7 | 3814 | int i; |
82766b29 | 3815 | struct commit *commit; |
71571cd7 | 3816 | |
ebddf393 JS |
3817 | /* Determine the length of the label */ |
3818 | for (i = 0; i < len; i++) | |
3819 | if (isspace(name[i])) | |
71571cd7 MÅ |
3820 | break; |
3821 | len = i; | |
ebddf393 | 3822 | |
688d82f2 | 3823 | commit = lookup_label(r, name, len, &ref_name); |
82766b29 PW |
3824 | if (!commit) { |
3825 | ret = -1; | |
0c52cf8e | 3826 | goto cleanup; |
ebddf393 | 3827 | } |
82766b29 | 3828 | oid = commit->object.oid; |
9055e401 JS |
3829 | } |
3830 | ||
9055e401 JS |
3831 | setup_unpack_trees_porcelain(&unpack_tree_opts, "reset"); |
3832 | unpack_tree_opts.head_idx = 1; | |
f11c9580 NTND |
3833 | unpack_tree_opts.src_index = r->index; |
3834 | unpack_tree_opts.dst_index = r->index; | |
9055e401 JS |
3835 | unpack_tree_opts.fn = oneway_merge; |
3836 | unpack_tree_opts.merge = 1; | |
3837 | unpack_tree_opts.update = 1; | |
1b5f3733 | 3838 | unpack_tree_opts.preserve_ignored = 0; /* FIXME: !overwrite_ignore */ |
652bd021 | 3839 | unpack_tree_opts.skip_cache_tree_update = 1; |
3f267856 | 3840 | init_checkout_metadata(&unpack_tree_opts.meta, name, &oid, NULL); |
9055e401 | 3841 | |
e1ff0a32 | 3842 | if (repo_read_index_unmerged(r)) { |
1c8dfc36 | 3843 | ret = error_resolve_conflict(action_name(opts)); |
0c52cf8e | 3844 | goto cleanup; |
9055e401 JS |
3845 | } |
3846 | ||
5e575807 | 3847 | if (!fill_tree_descriptor(r, &desc, &oid)) { |
0c52cf8e ÆAB |
3848 | ret = error(_("failed to find tree of %s"), oid_to_hex(&oid)); |
3849 | goto cleanup; | |
9055e401 JS |
3850 | } |
3851 | ||
3852 | if (unpack_trees(1, &desc, &unpack_tree_opts)) { | |
0c52cf8e ÆAB |
3853 | ret = -1; |
3854 | goto cleanup; | |
9055e401 JS |
3855 | } |
3856 | ||
3857 | tree = parse_tree_indirect(&oid); | |
c207e9e1 | 3858 | prime_cache_tree(r, r->index, tree); |
9055e401 | 3859 | |
f11c9580 | 3860 | if (write_locked_index(r->index, &lock, COMMIT_LOCK) < 0) |
9055e401 | 3861 | ret = error(_("could not write index")); |
9055e401 JS |
3862 | |
3863 | if (!ret) | |
3864 | ret = update_ref(reflog_message(opts, "reset", "'%.*s'", | |
3865 | len, name), "HEAD", &oid, | |
3866 | NULL, 0, UPDATE_REFS_MSG_ON_ERR); | |
0c52cf8e ÆAB |
3867 | cleanup: |
3868 | free((void *)desc.buffer); | |
3869 | if (ret < 0) | |
3870 | rollback_lock_file(&lock); | |
9055e401 | 3871 | strbuf_release(&ref_name); |
6e658547 | 3872 | clear_unpack_trees_porcelain(&unpack_tree_opts); |
9055e401 JS |
3873 | return ret; |
3874 | } | |
3875 | ||
f11c9580 NTND |
3876 | static int do_merge(struct repository *r, |
3877 | struct commit *commit, | |
3878 | const char *arg, int arg_len, | |
2be6b6f4 | 3879 | int flags, int *check_todo, struct replay_opts *opts) |
4c68e7dd | 3880 | { |
2be6b6f4 | 3881 | int run_commit_flags = 0; |
4c68e7dd JS |
3882 | struct strbuf ref_name = STRBUF_INIT; |
3883 | struct commit *head_commit, *merge_commit, *i; | |
5327d898 | 3884 | struct commit_list *bases, *j; |
2b6ad0f4 | 3885 | struct commit_list *to_merge = NULL, **tail = &to_merge; |
fb60b9f3 | 3886 | const char *strategy = !opts->xopts.nr && |
14c4586c EN |
3887 | (!opts->strategy || |
3888 | !strcmp(opts->strategy, "recursive") || | |
3889 | !strcmp(opts->strategy, "ort")) ? | |
e145d993 | 3890 | NULL : opts->strategy; |
4c68e7dd | 3891 | struct merge_options o; |
2b6ad0f4 | 3892 | int merge_arg_len, oneline_offset, can_fast_forward, ret, k; |
4c68e7dd JS |
3893 | static struct lock_file lock; |
3894 | const char *p; | |
3895 | ||
3a95f31d | 3896 | if (repo_hold_locked_index(r, &lock, LOCK_REPORT_ON_ERROR) < 0) { |
4c68e7dd JS |
3897 | ret = -1; |
3898 | goto leave_merge; | |
3899 | } | |
3900 | ||
3901 | head_commit = lookup_commit_reference_by_name("HEAD"); | |
3902 | if (!head_commit) { | |
3903 | ret = error(_("cannot merge without a current revision")); | |
3904 | goto leave_merge; | |
3905 | } | |
3906 | ||
2b6ad0f4 JS |
3907 | /* |
3908 | * For octopus merges, the arg starts with the list of revisions to be | |
3909 | * merged. The list is optionally followed by '#' and the oneline. | |
3910 | */ | |
3911 | merge_arg_len = oneline_offset = arg_len; | |
3912 | for (p = arg; p - arg < arg_len; p += strspn(p, " \t\n")) { | |
3913 | if (!*p) | |
3914 | break; | |
3915 | if (*p == '#' && (!p[1] || isspace(p[1]))) { | |
3916 | p += 1 + strspn(p + 1, " \t\n"); | |
3917 | oneline_offset = p - arg; | |
3918 | break; | |
3919 | } | |
3920 | k = strcspn(p, " \t\n"); | |
3921 | if (!k) | |
3922 | continue; | |
688d82f2 | 3923 | merge_commit = lookup_label(r, p, k, &ref_name); |
2b6ad0f4 JS |
3924 | if (!merge_commit) { |
3925 | ret = error(_("unable to parse '%.*s'"), k, p); | |
3926 | goto leave_merge; | |
3927 | } | |
3928 | tail = &commit_list_insert(merge_commit, tail)->next; | |
3929 | p += k; | |
3930 | merge_arg_len = p - arg; | |
4c68e7dd JS |
3931 | } |
3932 | ||
2b6ad0f4 JS |
3933 | if (!to_merge) { |
3934 | ret = error(_("nothing to merge: '%.*s'"), arg_len, arg); | |
4c68e7dd JS |
3935 | goto leave_merge; |
3936 | } | |
3937 | ||
9c85a1c2 | 3938 | if (opts->have_squash_onto && |
4a7e27e9 | 3939 | oideq(&head_commit->object.oid, &opts->squash_onto)) { |
9c85a1c2 JS |
3940 | /* |
3941 | * When the user tells us to "merge" something into a | |
3942 | * "[new root]", let's simply fast-forward to the merge head. | |
3943 | */ | |
3944 | rollback_lock_file(&lock); | |
2b6ad0f4 JS |
3945 | if (to_merge->next) |
3946 | ret = error(_("octopus merge cannot be executed on " | |
3947 | "top of a [new root]")); | |
3948 | else | |
f11c9580 | 3949 | ret = fast_forward_to(r, &to_merge->item->object.oid, |
2b6ad0f4 JS |
3950 | &head_commit->object.oid, 0, |
3951 | opts); | |
9c85a1c2 JS |
3952 | goto leave_merge; |
3953 | } | |
3954 | ||
baf8ec8d PW |
3955 | /* |
3956 | * If HEAD is not identical to the first parent of the original merge | |
3957 | * commit, we cannot fast-forward. | |
3958 | */ | |
3959 | can_fast_forward = opts->allow_ff && commit && commit->parents && | |
3960 | oideq(&commit->parents->item->object.oid, | |
3961 | &head_commit->object.oid); | |
3962 | ||
3963 | /* | |
3964 | * If any merge head is different from the original one, we cannot | |
3965 | * fast-forward. | |
3966 | */ | |
3967 | if (can_fast_forward) { | |
3968 | struct commit_list *p = commit->parents->next; | |
3969 | ||
3970 | for (j = to_merge; j && p; j = j->next, p = p->next) | |
3971 | if (!oideq(&j->item->object.oid, | |
3972 | &p->item->object.oid)) { | |
3973 | can_fast_forward = 0; | |
3974 | break; | |
3975 | } | |
3976 | /* | |
3977 | * If the number of merge heads differs from the original merge | |
3978 | * commit, we cannot fast-forward. | |
3979 | */ | |
3980 | if (j || p) | |
3981 | can_fast_forward = 0; | |
3982 | } | |
3983 | ||
3984 | if (can_fast_forward) { | |
3985 | rollback_lock_file(&lock); | |
3986 | ret = fast_forward_to(r, &commit->object.oid, | |
3987 | &head_commit->object.oid, 0, opts); | |
3988 | if (flags & TODO_EDIT_MERGE_MSG) | |
3989 | goto fast_forward_edit; | |
3990 | ||
3991 | goto leave_merge; | |
3992 | } | |
3993 | ||
4c68e7dd | 3994 | if (commit) { |
5772b0c7 | 3995 | const char *encoding = get_commit_output_encoding(); |
4a93b899 | 3996 | const char *message = repo_logmsg_reencode(r, commit, NULL, |
ecb5091f | 3997 | encoding); |
4c68e7dd JS |
3998 | const char *body; |
3999 | int len; | |
4000 | ||
4001 | if (!message) { | |
4002 | ret = error(_("could not get commit message of '%s'"), | |
4003 | oid_to_hex(&commit->object.oid)); | |
4004 | goto leave_merge; | |
4005 | } | |
4006 | write_author_script(message); | |
4007 | find_commit_subject(message, &body); | |
4008 | len = strlen(body); | |
f11c9580 | 4009 | ret = write_message(body, len, git_path_merge_msg(r), 0); |
4a93b899 | 4010 | repo_unuse_commit_buffer(r, commit, message); |
4c68e7dd JS |
4011 | if (ret) { |
4012 | error_errno(_("could not write '%s'"), | |
f11c9580 | 4013 | git_path_merge_msg(r)); |
4c68e7dd JS |
4014 | goto leave_merge; |
4015 | } | |
4016 | } else { | |
4017 | struct strbuf buf = STRBUF_INIT; | |
4018 | int len; | |
4019 | ||
4020 | strbuf_addf(&buf, "author %s", git_author_info(0)); | |
4021 | write_author_script(buf.buf); | |
4022 | strbuf_reset(&buf); | |
4023 | ||
4024 | if (oneline_offset < arg_len) { | |
4025 | p = arg + oneline_offset; | |
4026 | len = arg_len - oneline_offset; | |
4027 | } else { | |
2b6ad0f4 JS |
4028 | strbuf_addf(&buf, "Merge %s '%.*s'", |
4029 | to_merge->next ? "branches" : "branch", | |
4c68e7dd JS |
4030 | merge_arg_len, arg); |
4031 | p = buf.buf; | |
4032 | len = buf.len; | |
4033 | } | |
4034 | ||
f11c9580 | 4035 | ret = write_message(p, len, git_path_merge_msg(r), 0); |
4c68e7dd JS |
4036 | strbuf_release(&buf); |
4037 | if (ret) { | |
4038 | error_errno(_("could not write '%s'"), | |
f11c9580 | 4039 | git_path_merge_msg(r)); |
4c68e7dd JS |
4040 | goto leave_merge; |
4041 | } | |
4042 | } | |
4043 | ||
e145d993 | 4044 | if (strategy || to_merge->next) { |
2b6ad0f4 JS |
4045 | /* Octopus merge */ |
4046 | struct child_process cmd = CHILD_PROCESS_INIT; | |
4047 | ||
29fda24d | 4048 | if (read_env_script(&cmd.env)) { |
2b6ad0f4 JS |
4049 | const char *gpg_opt = gpg_sign_opt_quoted(opts); |
4050 | ||
4051 | ret = error(_(staged_changes_advice), gpg_opt, gpg_opt); | |
4052 | goto leave_merge; | |
4053 | } | |
4054 | ||
7573cec5 | 4055 | if (opts->committer_date_is_author_date) |
29fda24d | 4056 | strvec_pushf(&cmd.env, "GIT_COMMITTER_DATE=%s", |
9c31b19d JH |
4057 | opts->ignore_date ? |
4058 | "" : | |
b3193252 | 4059 | author_date_from_env(&cmd.env)); |
a3894aad | 4060 | if (opts->ignore_date) |
29fda24d | 4061 | strvec_push(&cmd.env, "GIT_AUTHOR_DATE="); |
7573cec5 | 4062 | |
2b6ad0f4 | 4063 | cmd.git_cmd = 1; |
c972bf4c JK |
4064 | strvec_push(&cmd.args, "merge"); |
4065 | strvec_push(&cmd.args, "-s"); | |
e145d993 | 4066 | if (!strategy) |
c972bf4c | 4067 | strvec_push(&cmd.args, "octopus"); |
e145d993 | 4068 | else { |
c972bf4c | 4069 | strvec_push(&cmd.args, strategy); |
fb60b9f3 | 4070 | for (k = 0; k < opts->xopts.nr; k++) |
c972bf4c | 4071 | strvec_pushf(&cmd.args, |
fb60b9f3 | 4072 | "-X%s", opts->xopts.v[k]); |
e145d993 | 4073 | } |
f2563c9e PW |
4074 | if (!(flags & TODO_EDIT_MERGE_MSG)) |
4075 | strvec_push(&cmd.args, "--no-edit"); | |
4076 | else | |
4077 | strvec_push(&cmd.args, "--edit"); | |
c972bf4c JK |
4078 | strvec_push(&cmd.args, "--no-ff"); |
4079 | strvec_push(&cmd.args, "--no-log"); | |
4080 | strvec_push(&cmd.args, "--no-stat"); | |
4081 | strvec_push(&cmd.args, "-F"); | |
4082 | strvec_push(&cmd.args, git_path_merge_msg(r)); | |
2b6ad0f4 | 4083 | if (opts->gpg_sign) |
ae03c97a | 4084 | strvec_pushf(&cmd.args, "-S%s", opts->gpg_sign); |
19dad040 SČ |
4085 | else |
4086 | strvec_push(&cmd.args, "--no-gpg-sign"); | |
2b6ad0f4 JS |
4087 | |
4088 | /* Add the tips to be merged */ | |
4089 | for (j = to_merge; j; j = j->next) | |
c972bf4c | 4090 | strvec_push(&cmd.args, |
f6d8942b | 4091 | oid_to_hex(&j->item->object.oid)); |
2b6ad0f4 JS |
4092 | |
4093 | strbuf_release(&ref_name); | |
c8e4159e HWN |
4094 | refs_delete_ref(get_main_ref_store(r), "", "CHERRY_PICK_HEAD", |
4095 | NULL, 0); | |
2b6ad0f4 JS |
4096 | rollback_lock_file(&lock); |
4097 | ||
2b6ad0f4 JS |
4098 | ret = run_command(&cmd); |
4099 | ||
4100 | /* force re-reading of the cache */ | |
9c5f3ee3 ÆAB |
4101 | if (!ret) { |
4102 | discard_index(r->index); | |
4103 | if (repo_read_index(r) < 0) | |
4104 | ret = error(_("could not read index")); | |
4105 | } | |
2b6ad0f4 JS |
4106 | goto leave_merge; |
4107 | } | |
4108 | ||
4109 | merge_commit = to_merge->item; | |
4a93b899 | 4110 | bases = repo_get_merge_bases(r, head_commit, merge_commit); |
4a7e27e9 JK |
4111 | if (bases && oideq(&merge_commit->object.oid, |
4112 | &bases->item->object.oid)) { | |
7ccdf65b JS |
4113 | ret = 0; |
4114 | /* skip merging an ancestor of HEAD */ | |
4115 | goto leave_merge; | |
4116 | } | |
4117 | ||
4439c7a3 | 4118 | write_message(oid_to_hex(&merge_commit->object.oid), the_hash_algo->hexsz, |
cde55548 JH |
4119 | git_path_merge_head(r), 0); |
4120 | write_message("no-ff", 5, git_path_merge_mode(r), 0); | |
85f8d9da | 4121 | |
5327d898 | 4122 | bases = reverse_commit_list(bases); |
4c68e7dd | 4123 | |
e1ff0a32 | 4124 | repo_read_index(r); |
0d6caa2d | 4125 | init_merge_options(&o, r); |
4c68e7dd JS |
4126 | o.branch1 = "HEAD"; |
4127 | o.branch2 = ref_name.buf; | |
4128 | o.buffer_output = 2; | |
4129 | ||
6a5fb966 | 4130 | if (!opts->strategy || !strcmp(opts->strategy, "ort")) { |
14c4586c EN |
4131 | /* |
4132 | * TODO: Should use merge_incore_recursive() and | |
4133 | * merge_switch_to_result(), skipping the call to | |
4134 | * merge_switch_to_result() when we don't actually need to | |
4135 | * update the index and working copy immediately. | |
4136 | */ | |
4137 | ret = merge_ort_recursive(&o, | |
5327d898 | 4138 | head_commit, merge_commit, bases, |
14c4586c EN |
4139 | &i); |
4140 | } else { | |
5327d898 | 4141 | ret = merge_recursive(&o, head_commit, merge_commit, bases, |
14c4586c EN |
4142 | &i); |
4143 | } | |
4c68e7dd JS |
4144 | if (ret <= 0) |
4145 | fputs(o.obuf.buf, stdout); | |
4146 | strbuf_release(&o.obuf); | |
4147 | if (ret < 0) { | |
4148 | error(_("could not even attempt to merge '%.*s'"), | |
4149 | merge_arg_len, arg); | |
4150 | goto leave_merge; | |
4151 | } | |
4152 | /* | |
4153 | * The return value of merge_recursive() is 1 on clean, and 0 on | |
4154 | * unclean merge. | |
4155 | * | |
4156 | * Let's reverse that, so that do_merge() returns 0 upon success and | |
4157 | * 1 upon failed merge (keeping the return value -1 for the cases where | |
4158 | * we will want to reschedule the `merge` command). | |
4159 | */ | |
4160 | ret = !ret; | |
4161 | ||
f11c9580 NTND |
4162 | if (r->index->cache_changed && |
4163 | write_locked_index(r->index, &lock, COMMIT_LOCK)) { | |
4c68e7dd JS |
4164 | ret = error(_("merge: Unable to write new index file")); |
4165 | goto leave_merge; | |
4166 | } | |
4167 | ||
4168 | rollback_lock_file(&lock); | |
4169 | if (ret) | |
f11c9580 | 4170 | repo_rerere(r, opts->allow_rerere_auto); |
4c68e7dd JS |
4171 | else |
4172 | /* | |
4173 | * In case of problems, we now want to return a positive | |
4174 | * value (a negative one would indicate that the `merge` | |
4175 | * command needs to be rescheduled). | |
4176 | */ | |
20f4b044 | 4177 | ret = !!run_git_commit(git_path_merge_msg(r), opts, |
f11c9580 | 4178 | run_commit_flags); |
4c68e7dd | 4179 | |
2be6b6f4 PW |
4180 | if (!ret && flags & TODO_EDIT_MERGE_MSG) { |
4181 | fast_forward_edit: | |
4182 | *check_todo = 1; | |
4183 | run_commit_flags |= AMEND_MSG | EDIT_MSG | VERIFY_MSG; | |
4184 | ret = !!run_git_commit(NULL, opts, run_commit_flags); | |
4185 | } | |
4186 | ||
4187 | ||
4c68e7dd JS |
4188 | leave_merge: |
4189 | strbuf_release(&ref_name); | |
4190 | rollback_lock_file(&lock); | |
2b6ad0f4 | 4191 | free_commit_list(to_merge); |
4c68e7dd JS |
4192 | return ret; |
4193 | } | |
4194 | ||
89fc0b53 DS |
4195 | static int write_update_refs_state(struct string_list *refs_to_oids) |
4196 | { | |
4197 | int result = 0; | |
4198 | struct lock_file lock = LOCK_INIT; | |
4199 | FILE *fp = NULL; | |
4200 | struct string_list_item *item; | |
4201 | char *path; | |
4202 | ||
89fc0b53 DS |
4203 | path = rebase_path_update_refs(the_repository->gitdir); |
4204 | ||
44da9e08 VD |
4205 | if (!refs_to_oids->nr) { |
4206 | if (unlink(path) && errno != ENOENT) | |
4207 | result = error_errno(_("could not unlink: %s"), path); | |
4208 | goto cleanup; | |
4209 | } | |
4210 | ||
89fc0b53 DS |
4211 | if (safe_create_leading_directories(path)) { |
4212 | result = error(_("unable to create leading directories of %s"), | |
4213 | path); | |
4214 | goto cleanup; | |
4215 | } | |
4216 | ||
4217 | if (hold_lock_file_for_update(&lock, path, 0) < 0) { | |
4218 | result = error(_("another 'rebase' process appears to be running; " | |
4219 | "'%s.lock' already exists"), | |
4220 | path); | |
4221 | goto cleanup; | |
4222 | } | |
4223 | ||
4224 | fp = fdopen_lock_file(&lock, "w"); | |
4225 | if (!fp) { | |
4226 | result = error_errno(_("could not open '%s' for writing"), path); | |
4227 | rollback_lock_file(&lock); | |
4228 | goto cleanup; | |
4229 | } | |
4230 | ||
4231 | for_each_string_list_item(item, refs_to_oids) { | |
4232 | struct update_ref_record *rec = item->util; | |
4233 | fprintf(fp, "%s\n%s\n%s\n", item->string, | |
4234 | oid_to_hex(&rec->before), oid_to_hex(&rec->after)); | |
4235 | } | |
4236 | ||
4237 | result = commit_lock_file(&lock); | |
4238 | ||
4239 | cleanup: | |
4240 | free(path); | |
4241 | return result; | |
4242 | } | |
4243 | ||
b3b1a21d DS |
4244 | /* |
4245 | * Parse the update-refs file for the current rebase, then remove the | |
4246 | * refs that do not appear in the todo_list (and have not had updated | |
4247 | * values stored) and add refs that are in the todo_list but not | |
4248 | * represented in the update-refs file. | |
4249 | * | |
4250 | * If there are changes to the update-refs list, then write the new state | |
4251 | * to disk. | |
4252 | */ | |
4253 | void todo_list_filter_update_refs(struct repository *r, | |
4254 | struct todo_list *todo_list) | |
4255 | { | |
4256 | int i; | |
4257 | int updated = 0; | |
4258 | struct string_list update_refs = STRING_LIST_INIT_DUP; | |
4259 | ||
4260 | sequencer_get_update_refs_state(r->gitdir, &update_refs); | |
4261 | ||
4262 | /* | |
4263 | * For each item in the update_refs list, if it has no updated | |
4264 | * value and does not appear in the todo_list, then remove it | |
4265 | * from the update_refs list. | |
4266 | */ | |
4267 | for (i = 0; i < update_refs.nr; i++) { | |
4268 | int j; | |
4269 | int found = 0; | |
4270 | const char *ref = update_refs.items[i].string; | |
4271 | size_t reflen = strlen(ref); | |
4272 | struct update_ref_record *rec = update_refs.items[i].util; | |
4273 | ||
4274 | /* OID already stored as updated. */ | |
4275 | if (!is_null_oid(&rec->after)) | |
4276 | continue; | |
4277 | ||
fa5103dd | 4278 | for (j = 0; !found && j < todo_list->nr; j++) { |
b3b1a21d DS |
4279 | struct todo_item *item = &todo_list->items[j]; |
4280 | const char *arg = todo_list->buf.buf + item->arg_offset; | |
4281 | ||
4282 | if (item->command != TODO_UPDATE_REF) | |
4283 | continue; | |
4284 | ||
4285 | if (item->arg_len != reflen || | |
4286 | strncmp(arg, ref, reflen)) | |
4287 | continue; | |
4288 | ||
4289 | found = 1; | |
4290 | } | |
4291 | ||
4292 | if (!found) { | |
4293 | free(update_refs.items[i].string); | |
4294 | free(update_refs.items[i].util); | |
4295 | ||
4296 | update_refs.nr--; | |
4297 | MOVE_ARRAY(update_refs.items + i, update_refs.items + i + 1, update_refs.nr - i); | |
4298 | ||
4299 | updated = 1; | |
4300 | i--; | |
4301 | } | |
4302 | } | |
4303 | ||
4304 | /* | |
4305 | * For each todo_item, check if its ref is in the update_refs list. | |
4306 | * If not, then add it as an un-updated ref. | |
4307 | */ | |
fa5103dd | 4308 | for (i = 0; i < todo_list->nr; i++) { |
b3b1a21d DS |
4309 | struct todo_item *item = &todo_list->items[i]; |
4310 | const char *arg = todo_list->buf.buf + item->arg_offset; | |
4311 | int j, found = 0; | |
4312 | ||
4313 | if (item->command != TODO_UPDATE_REF) | |
4314 | continue; | |
4315 | ||
4316 | for (j = 0; !found && j < update_refs.nr; j++) { | |
4317 | const char *ref = update_refs.items[j].string; | |
4318 | ||
4319 | found = strlen(ref) == item->arg_len && | |
4320 | !strncmp(ref, arg, item->arg_len); | |
4321 | } | |
4322 | ||
4323 | if (!found) { | |
4324 | struct string_list_item *inserted; | |
4325 | struct strbuf argref = STRBUF_INIT; | |
4326 | ||
4327 | strbuf_add(&argref, arg, item->arg_len); | |
4328 | inserted = string_list_insert(&update_refs, argref.buf); | |
4329 | inserted->util = init_update_ref_record(argref.buf); | |
4330 | strbuf_release(&argref); | |
4331 | updated = 1; | |
4332 | } | |
4333 | } | |
4334 | ||
4335 | if (updated) | |
4336 | write_update_refs_state(&update_refs); | |
4337 | string_list_clear(&update_refs, 1); | |
4338 | } | |
4339 | ||
89fc0b53 | 4340 | static int do_update_ref(struct repository *r, const char *refname) |
a97d7916 | 4341 | { |
89fc0b53 DS |
4342 | struct string_list_item *item; |
4343 | struct string_list list = STRING_LIST_INIT_DUP; | |
4344 | ||
4345 | if (sequencer_get_update_refs_state(r->gitdir, &list)) | |
4346 | return -1; | |
4347 | ||
4348 | for_each_string_list_item(item, &list) { | |
4349 | if (!strcmp(item->string, refname)) { | |
4350 | struct update_ref_record *rec = item->util; | |
4351 | if (read_ref("HEAD", &rec->after)) | |
4352 | return -1; | |
4353 | break; | |
4354 | } | |
4355 | } | |
4356 | ||
4357 | write_update_refs_state(&list); | |
4358 | string_list_clear(&list, 1); | |
a97d7916 DS |
4359 | return 0; |
4360 | } | |
4361 | ||
4611884e | 4362 | static int do_update_refs(struct repository *r, int quiet) |
89fc0b53 DS |
4363 | { |
4364 | int res = 0; | |
4365 | struct string_list_item *item; | |
4366 | struct string_list refs_to_oids = STRING_LIST_INIT_DUP; | |
4367 | struct ref_store *refs = get_main_ref_store(r); | |
4611884e DS |
4368 | struct strbuf update_msg = STRBUF_INIT; |
4369 | struct strbuf error_msg = STRBUF_INIT; | |
89fc0b53 DS |
4370 | |
4371 | if ((res = sequencer_get_update_refs_state(r->gitdir, &refs_to_oids))) | |
4372 | return res; | |
4373 | ||
4374 | for_each_string_list_item(item, &refs_to_oids) { | |
4375 | struct update_ref_record *rec = item->util; | |
4611884e | 4376 | int loop_res; |
89fc0b53 | 4377 | |
4611884e DS |
4378 | loop_res = refs_update_ref(refs, "rewritten during rebase", |
4379 | item->string, | |
4380 | &rec->after, &rec->before, | |
4381 | 0, UPDATE_REFS_MSG_ON_ERR); | |
4382 | res |= loop_res; | |
4383 | ||
4384 | if (quiet) | |
4385 | continue; | |
4386 | ||
4387 | if (loop_res) | |
4388 | strbuf_addf(&error_msg, "\t%s\n", item->string); | |
4389 | else | |
4390 | strbuf_addf(&update_msg, "\t%s\n", item->string); | |
4391 | } | |
4392 | ||
4393 | if (!quiet && | |
4394 | (update_msg.len || error_msg.len)) { | |
4395 | fprintf(stderr, | |
4396 | _("Updated the following refs with %s:\n%s"), | |
4397 | "--update-refs", | |
4398 | update_msg.buf); | |
4399 | ||
4400 | if (res) | |
4401 | fprintf(stderr, | |
4402 | _("Failed to update the following refs with %s:\n%s"), | |
4403 | "--update-refs", | |
4404 | error_msg.buf); | |
89fc0b53 DS |
4405 | } |
4406 | ||
4407 | string_list_clear(&refs_to_oids, 1); | |
4611884e DS |
4408 | strbuf_release(&update_msg); |
4409 | strbuf_release(&error_msg); | |
89fc0b53 DS |
4410 | return res; |
4411 | } | |
4412 | ||
6e98de72 JS |
4413 | static int is_final_fixup(struct todo_list *todo_list) |
4414 | { | |
4415 | int i = todo_list->current; | |
4416 | ||
4417 | if (!is_fixup(todo_list->items[i].command)) | |
4418 | return 0; | |
4419 | ||
4420 | while (++i < todo_list->nr) | |
4421 | if (is_fixup(todo_list->items[i].command)) | |
4422 | return 0; | |
4423 | else if (!is_noop(todo_list->items[i].command)) | |
4424 | break; | |
4425 | return 1; | |
4426 | } | |
4427 | ||
25cb8df9 JS |
4428 | static enum todo_command peek_command(struct todo_list *todo_list, int offset) |
4429 | { | |
4430 | int i; | |
4431 | ||
4432 | for (i = todo_list->current + offset; i < todo_list->nr; i++) | |
4433 | if (!is_noop(todo_list->items[i].command)) | |
4434 | return todo_list->items[i].command; | |
4435 | ||
4436 | return -1; | |
4437 | } | |
4438 | ||
b7de153b | 4439 | void create_autostash(struct repository *r, const char *path) |
0816f1df DL |
4440 | { |
4441 | struct strbuf buf = STRBUF_INIT; | |
4442 | struct lock_file lock_file = LOCK_INIT; | |
4443 | int fd; | |
4444 | ||
4445 | fd = repo_hold_locked_index(r, &lock_file, 0); | |
4446 | refresh_index(r->index, REFRESH_QUIET, NULL, NULL, NULL); | |
4447 | if (0 <= fd) | |
4448 | repo_update_index_if_able(r, &lock_file); | |
4449 | rollback_lock_file(&lock_file); | |
4450 | ||
4451 | if (has_unstaged_changes(r, 1) || | |
4452 | has_uncommitted_changes(r, 1)) { | |
4453 | struct child_process stash = CHILD_PROCESS_INIT; | |
6ae80861 | 4454 | struct reset_head_opts ropts = { .flags = RESET_HEAD_HARD }; |
0816f1df DL |
4455 | struct object_id oid; |
4456 | ||
c972bf4c | 4457 | strvec_pushl(&stash.args, |
f6d8942b | 4458 | "stash", "create", "autostash", NULL); |
0816f1df DL |
4459 | stash.git_cmd = 1; |
4460 | stash.no_stdin = 1; | |
4461 | strbuf_reset(&buf); | |
4462 | if (capture_command(&stash, &buf, GIT_MAX_HEXSZ)) | |
4463 | die(_("Cannot autostash")); | |
4464 | strbuf_trim_trailing_newline(&buf); | |
4a93b899 | 4465 | if (repo_get_oid(r, buf.buf, &oid)) |
0816f1df DL |
4466 | die(_("Unexpected stash response: '%s'"), |
4467 | buf.buf); | |
4468 | strbuf_reset(&buf); | |
4469 | strbuf_add_unique_abbrev(&buf, &oid, DEFAULT_ABBREV); | |
4470 | ||
4471 | if (safe_create_leading_directories_const(path)) | |
4472 | die(_("Could not create directory for '%s'"), | |
4473 | path); | |
4474 | write_file(path, "%s", oid_to_hex(&oid)); | |
4475 | printf(_("Created autostash: %s\n"), buf.buf); | |
6ae80861 | 4476 | if (reset_head(r, &ropts) < 0) |
0816f1df | 4477 | die(_("could not reset --hard")); |
9c5f3ee3 ÆAB |
4478 | discard_index(r->index); |
4479 | if (repo_read_index(r) < 0) | |
0816f1df DL |
4480 | die(_("could not read index")); |
4481 | } | |
4482 | strbuf_release(&buf); | |
4483 | } | |
4484 | ||
804fe315 | 4485 | static int apply_save_autostash_oid(const char *stash_oid, int attempt_apply) |
796c7972 | 4486 | { |
796c7972 JS |
4487 | struct child_process child = CHILD_PROCESS_INIT; |
4488 | int ret = 0; | |
4489 | ||
12b6e136 DL |
4490 | if (attempt_apply) { |
4491 | child.git_cmd = 1; | |
4492 | child.no_stdout = 1; | |
4493 | child.no_stderr = 1; | |
c972bf4c JK |
4494 | strvec_push(&child.args, "stash"); |
4495 | strvec_push(&child.args, "apply"); | |
4496 | strvec_push(&child.args, stash_oid); | |
12b6e136 | 4497 | ret = run_command(&child); |
796c7972 | 4498 | } |
796c7972 | 4499 | |
12b6e136 | 4500 | if (attempt_apply && !ret) |
cdb866b3 | 4501 | fprintf(stderr, _("Applied autostash.\n")); |
796c7972 JS |
4502 | else { |
4503 | struct child_process store = CHILD_PROCESS_INIT; | |
4504 | ||
4505 | store.git_cmd = 1; | |
c972bf4c JK |
4506 | strvec_push(&store.args, "stash"); |
4507 | strvec_push(&store.args, "store"); | |
4508 | strvec_push(&store.args, "-m"); | |
4509 | strvec_push(&store.args, "autostash"); | |
4510 | strvec_push(&store.args, "-q"); | |
4511 | strvec_push(&store.args, stash_oid); | |
796c7972 | 4512 | if (run_command(&store)) |
804fe315 | 4513 | ret = error(_("cannot store %s"), stash_oid); |
796c7972 | 4514 | else |
cdb866b3 | 4515 | fprintf(stderr, |
12b6e136 | 4516 | _("%s\n" |
cdb866b3 JS |
4517 | "Your changes are safe in the stash.\n" |
4518 | "You can run \"git stash pop\" or" | |
12b6e136 DL |
4519 | " \"git stash drop\" at any time.\n"), |
4520 | attempt_apply ? | |
4521 | _("Applying autostash resulted in conflicts.") : | |
4522 | _("Autostash exists; creating a new stash entry.")); | |
796c7972 JS |
4523 | } |
4524 | ||
796c7972 JS |
4525 | return ret; |
4526 | } | |
4527 | ||
804fe315 DL |
4528 | static int apply_save_autostash(const char *path, int attempt_apply) |
4529 | { | |
4530 | struct strbuf stash_oid = STRBUF_INIT; | |
4531 | int ret = 0; | |
4532 | ||
4533 | if (!read_oneliner(&stash_oid, path, | |
4534 | READ_ONELINER_SKIP_IF_EMPTY)) { | |
4535 | strbuf_release(&stash_oid); | |
4536 | return 0; | |
4537 | } | |
4538 | strbuf_trim(&stash_oid); | |
4539 | ||
4540 | ret = apply_save_autostash_oid(stash_oid.buf, attempt_apply); | |
4541 | ||
0dd562e0 | 4542 | unlink(path); |
facca7f0 | 4543 | strbuf_release(&stash_oid); |
796c7972 JS |
4544 | return ret; |
4545 | } | |
4546 | ||
12b6e136 DL |
4547 | int save_autostash(const char *path) |
4548 | { | |
4549 | return apply_save_autostash(path, 0); | |
4550 | } | |
4551 | ||
4552 | int apply_autostash(const char *path) | |
4553 | { | |
4554 | return apply_save_autostash(path, 1); | |
4555 | } | |
4556 | ||
804fe315 DL |
4557 | int apply_autostash_oid(const char *stash_oid) |
4558 | { | |
4559 | return apply_save_autostash_oid(stash_oid, 1); | |
4560 | } | |
4561 | ||
fc4a6735 | 4562 | static int checkout_onto(struct repository *r, struct replay_opts *opts, |
7d3488eb | 4563 | const char *onto_name, const struct object_id *onto, |
f3e27a02 | 4564 | const struct object_id *orig_head) |
4df66c40 | 4565 | { |
38c541ce PW |
4566 | struct reset_head_opts ropts = { |
4567 | .oid = onto, | |
4568 | .orig_head = orig_head, | |
4569 | .flags = RESET_HEAD_DETACH | RESET_ORIG_HEAD | | |
4570 | RESET_HEAD_RUN_POST_CHECKOUT_HOOK, | |
4571 | .head_msg = reflog_message(opts, "start", "checkout %s", | |
4572 | onto_name), | |
d188a60d | 4573 | .default_reflog_action = sequencer_reflog_action(opts) |
38c541ce PW |
4574 | }; |
4575 | if (reset_head(r, &ropts)) { | |
be1bb600 | 4576 | apply_autostash(rebase_path_autostash()); |
4df66c40 AG |
4577 | sequencer_remove_state(opts); |
4578 | return error(_("could not detach HEAD")); | |
4579 | } | |
4580 | ||
38c541ce | 4581 | return 0; |
4df66c40 AG |
4582 | } |
4583 | ||
005af339 | 4584 | static int stopped_at_head(struct repository *r) |
71f82465 JS |
4585 | { |
4586 | struct object_id head; | |
4587 | struct commit *commit; | |
4588 | struct commit_message message; | |
4589 | ||
4a93b899 | 4590 | if (repo_get_oid(r, "HEAD", &head) || |
005af339 | 4591 | !(commit = lookup_commit(r, &head)) || |
4a93b899 | 4592 | repo_parse_commit(r, commit) || get_message(commit, &message)) |
71f82465 JS |
4593 | fprintf(stderr, _("Stopped at HEAD\n")); |
4594 | else { | |
4595 | fprintf(stderr, _("Stopped at %s\n"), message.label); | |
4596 | free_message(commit, &message); | |
4597 | } | |
4598 | return 0; | |
4599 | ||
4600 | } | |
4601 | ||
dfa8bae5 PW |
4602 | static int reread_todo_if_changed(struct repository *r, |
4603 | struct todo_list *todo_list, | |
4604 | struct replay_opts *opts) | |
4605 | { | |
2b88fe06 PW |
4606 | int offset; |
4607 | struct strbuf buf = STRBUF_INIT; | |
dfa8bae5 | 4608 | |
2b88fe06 PW |
4609 | if (strbuf_read_file_or_whine(&buf, get_todo_path(opts)) < 0) |
4610 | return -1; | |
4611 | offset = get_item_line_offset(todo_list, todo_list->current + 1); | |
4612 | if (buf.len != todo_list->buf.len - offset || | |
4613 | memcmp(buf.buf, todo_list->buf.buf + offset, buf.len)) { | |
dfa8bae5 PW |
4614 | /* Reread the todo file if it has changed. */ |
4615 | todo_list_release(todo_list); | |
4616 | if (read_populate_todo(r, todo_list, opts)) | |
4617 | return -1; /* message was printed */ | |
4618 | /* `current` will be incremented on return */ | |
4619 | todo_list->current = -1; | |
4620 | } | |
2b88fe06 | 4621 | strbuf_release(&buf); |
dfa8bae5 PW |
4622 | |
4623 | return 0; | |
4624 | } | |
4625 | ||
cb5206ea JS |
4626 | static const char rescheduled_advice[] = |
4627 | N_("Could not execute the todo command\n" | |
4628 | "\n" | |
4629 | " %.*s" | |
4630 | "\n" | |
4631 | "It has been rescheduled; To edit the command before continuing, please\n" | |
4632 | "edit the todo list first:\n" | |
4633 | "\n" | |
4634 | " git rebase --edit-todo\n" | |
4635 | " git rebase --continue\n"); | |
4636 | ||
f11c9580 NTND |
4637 | static int pick_commits(struct repository *r, |
4638 | struct todo_list *todo_list, | |
4639 | struct replay_opts *opts) | |
043a4492 | 4640 | { |
9055e401 | 4641 | int res = 0, reschedule = 0; |
043a4492 | 4642 | |
d188a60d | 4643 | opts->reflog_message = sequencer_reflog_action(opts); |
043a4492 RR |
4644 | if (opts->allow_ff) |
4645 | assert(!(opts->signoff || opts->no_commit || | |
39edfd5c | 4646 | opts->record_origin || should_edit(opts) || |
a3894aad PW |
4647 | opts->committer_date_is_author_date || |
4648 | opts->ignore_date)); | |
f11c9580 | 4649 | if (read_and_refresh_cache(r, opts)) |
0d9c6dc9 | 4650 | return -1; |
043a4492 | 4651 | |
004fefa7 JS |
4652 | while (todo_list->current < todo_list->nr) { |
4653 | struct todo_item *item = todo_list->items + todo_list->current; | |
6ad656db | 4654 | const char *arg = todo_item_get_arg(todo_list, item); |
a47ba3c7 | 4655 | int check_todo = 0; |
6ad656db | 4656 | |
004fefa7 | 4657 | if (save_todo(todo_list, opts)) |
221675de | 4658 | return -1; |
6e98de72 | 4659 | if (is_rebase_i(opts)) { |
ef80069a JS |
4660 | if (item->command != TODO_COMMENT) { |
4661 | FILE *f = fopen(rebase_path_msgnum(), "w"); | |
4662 | ||
4663 | todo_list->done_nr++; | |
4664 | ||
4665 | if (f) { | |
4666 | fprintf(f, "%d\n", todo_list->done_nr); | |
4667 | fclose(f); | |
4668 | } | |
899b49c4 | 4669 | if (!opts->quiet) |
4d55d63b | 4670 | fprintf(stderr, _("Rebasing (%d/%d)%s"), |
899b49c4 EN |
4671 | todo_list->done_nr, |
4672 | todo_list->total_nr, | |
4673 | opts->verbose ? "\n" : "\r"); | |
ef80069a | 4674 | } |
6e98de72 JS |
4675 | unlink(rebase_path_message()); |
4676 | unlink(rebase_path_author_script()); | |
4677 | unlink(rebase_path_stopped_sha()); | |
4678 | unlink(rebase_path_amend()); | |
34e7771b | 4679 | unlink(git_path_merge_head(r)); |
5291828d | 4680 | unlink(git_path_auto_merge(r)); |
fbd7a232 | 4681 | delete_ref(NULL, "REBASE_HEAD", NULL, REF_NO_DEREF); |
71f82465 | 4682 | |
d7d90885 SG |
4683 | if (item->command == TODO_BREAK) { |
4684 | if (!opts->verbose) | |
4685 | term_clear_line(); | |
005af339 | 4686 | return stopped_at_head(r); |
d7d90885 | 4687 | } |
6e98de72 JS |
4688 | } |
4689 | if (item->command <= TODO_SQUASH) { | |
8ab37ef2 | 4690 | if (is_rebase_i(opts)) |
d188a60d PW |
4691 | opts->reflog_message = reflog_message(opts, |
4692 | command_to_string(item->command), NULL); | |
4693 | ||
ae70e34f CM |
4694 | res = do_pick_commit(r, item, opts, |
4695 | is_final_fixup(todo_list), | |
a47ba3c7 | 4696 | &check_todo); |
9d7bf3cf JS |
4697 | if (is_rebase_i(opts) && res < 0) { |
4698 | /* Reschedule */ | |
cb5206ea JS |
4699 | advise(_(rescheduled_advice), |
4700 | get_item_line_length(todo_list, | |
4701 | todo_list->current), | |
4702 | get_item_line(todo_list, | |
4703 | todo_list->current)); | |
9d7bf3cf JS |
4704 | todo_list->current--; |
4705 | if (save_todo(todo_list, opts)) | |
4706 | return -1; | |
4707 | } | |
56dc3ab0 JS |
4708 | if (item->command == TODO_EDIT) { |
4709 | struct commit *commit = item->commit; | |
d7d90885 SG |
4710 | if (!res) { |
4711 | if (!opts->verbose) | |
4712 | term_clear_line(); | |
99429213 | 4713 | fprintf(stderr, |
a42e1b41 | 4714 | _("Stopped at %s... %.*s\n"), |
56dc3ab0 | 4715 | short_commit_name(commit), |
6ad656db | 4716 | item->arg_len, arg); |
d7d90885 | 4717 | } |
f11c9580 | 4718 | return error_with_patch(r, commit, |
6ad656db | 4719 | arg, item->arg_len, opts, res, !res); |
56dc3ab0 | 4720 | } |
25cb8df9 JS |
4721 | if (is_rebase_i(opts) && !res) |
4722 | record_in_rewritten(&item->commit->object.oid, | |
4723 | peek_command(todo_list, 1)); | |
6e98de72 JS |
4724 | if (res && is_fixup(item->command)) { |
4725 | if (res == 1) | |
4726 | intend_to_amend(); | |
f11c9580 | 4727 | return error_failed_squash(r, item->commit, opts, |
6ad656db | 4728 | item->arg_len, arg); |
a9279c67 PW |
4729 | } else if (res && is_rebase_i(opts) && item->commit) { |
4730 | int to_amend = 0; | |
4731 | struct object_id oid; | |
4732 | ||
4733 | /* | |
4734 | * If we are rewording and have either | |
4735 | * fast-forwarded already, or are about to | |
4736 | * create a new root commit, we want to amend, | |
4737 | * otherwise we do not. | |
4738 | */ | |
4739 | if (item->command == TODO_REWORD && | |
4a93b899 | 4740 | !repo_get_oid(r, "HEAD", &oid) && |
4a7e27e9 | 4741 | (oideq(&item->commit->object.oid, &oid) || |
a9279c67 | 4742 | (opts->have_squash_onto && |
4a7e27e9 | 4743 | oideq(&opts->squash_onto, &oid)))) |
a9279c67 PW |
4744 | to_amend = 1; |
4745 | ||
f11c9580 | 4746 | return res | error_with_patch(r, item->commit, |
6ad656db | 4747 | arg, item->arg_len, opts, |
a9279c67 PW |
4748 | res, to_amend); |
4749 | } | |
311af526 | 4750 | } else if (item->command == TODO_EXEC) { |
6ad656db | 4751 | char *end_of_arg = (char *)(arg + item->arg_len); |
311af526 JS |
4752 | int saved = *end_of_arg; |
4753 | ||
d7d90885 SG |
4754 | if (!opts->verbose) |
4755 | term_clear_line(); | |
311af526 | 4756 | *end_of_arg = '\0'; |
6ad656db | 4757 | res = do_exec(r, arg); |
311af526 | 4758 | *end_of_arg = saved; |
54fd3243 | 4759 | |
d421afa0 JS |
4760 | if (res) { |
4761 | if (opts->reschedule_failed_exec) | |
4762 | reschedule = 1; | |
54fd3243 | 4763 | } |
a47ba3c7 | 4764 | check_todo = 1; |
9055e401 | 4765 | } else if (item->command == TODO_LABEL) { |
6ad656db | 4766 | if ((res = do_label(r, arg, item->arg_len))) |
9055e401 JS |
4767 | reschedule = 1; |
4768 | } else if (item->command == TODO_RESET) { | |
6ad656db | 4769 | if ((res = do_reset(r, arg, item->arg_len, opts))) |
9055e401 | 4770 | reschedule = 1; |
4c68e7dd | 4771 | } else if (item->command == TODO_MERGE) { |
2be6b6f4 PW |
4772 | if ((res = do_merge(r, item->commit, arg, item->arg_len, |
4773 | item->flags, &check_todo, opts)) < 0) | |
4c68e7dd | 4774 | reschedule = 1; |
537e7d61 JS |
4775 | else if (item->commit) |
4776 | record_in_rewritten(&item->commit->object.oid, | |
4777 | peek_command(todo_list, 1)); | |
4778 | if (res > 0) | |
4c68e7dd | 4779 | /* failed with merge conflicts */ |
f11c9580 | 4780 | return error_with_patch(r, item->commit, |
6ad656db AG |
4781 | arg, item->arg_len, |
4782 | opts, res, 0); | |
a97d7916 DS |
4783 | } else if (item->command == TODO_UPDATE_REF) { |
4784 | struct strbuf ref = STRBUF_INIT; | |
4785 | strbuf_add(&ref, arg, item->arg_len); | |
4786 | if ((res = do_update_ref(r, ref.buf))) | |
4787 | reschedule = 1; | |
4788 | strbuf_release(&ref); | |
56dc3ab0 | 4789 | } else if (!is_noop(item->command)) |
25c43667 JS |
4790 | return error(_("unknown command %d"), item->command); |
4791 | ||
9055e401 JS |
4792 | if (reschedule) { |
4793 | advise(_(rescheduled_advice), | |
4794 | get_item_line_length(todo_list, | |
4795 | todo_list->current), | |
4796 | get_item_line(todo_list, todo_list->current)); | |
4797 | todo_list->current--; | |
4798 | if (save_todo(todo_list, opts)) | |
4799 | return -1; | |
4c68e7dd | 4800 | if (item->commit) |
f11c9580 NTND |
4801 | return error_with_patch(r, |
4802 | item->commit, | |
6ad656db AG |
4803 | arg, item->arg_len, |
4804 | opts, res, 0); | |
dfa8bae5 PW |
4805 | } else if (is_rebase_i(opts) && check_todo && !res && |
4806 | reread_todo_if_changed(r, todo_list, opts)) { | |
4807 | return -1; | |
9055e401 JS |
4808 | } |
4809 | ||
004fefa7 | 4810 | todo_list->current++; |
043a4492 RR |
4811 | if (res) |
4812 | return res; | |
4813 | } | |
4814 | ||
56dc3ab0 | 4815 | if (is_rebase_i(opts)) { |
4b83ce9f | 4816 | struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT; |
25cb8df9 | 4817 | struct stat st; |
556907f1 | 4818 | |
56dc3ab0 JS |
4819 | /* Stopped in the middle, as planned? */ |
4820 | if (todo_list->current < todo_list->nr) | |
4821 | return 0; | |
556907f1 | 4822 | |
4b83ce9f JS |
4823 | if (read_oneliner(&head_ref, rebase_path_head_name(), 0) && |
4824 | starts_with(head_ref.buf, "refs/")) { | |
96e832a5 | 4825 | const char *msg; |
092bbcdf | 4826 | struct object_id head, orig; |
4b83ce9f JS |
4827 | int res; |
4828 | ||
4a93b899 | 4829 | if (repo_get_oid(r, "HEAD", &head)) { |
4b83ce9f JS |
4830 | res = error(_("cannot read HEAD")); |
4831 | cleanup_head_ref: | |
4832 | strbuf_release(&head_ref); | |
4833 | strbuf_release(&buf); | |
4834 | return res; | |
4835 | } | |
4836 | if (!read_oneliner(&buf, rebase_path_orig_head(), 0) || | |
092bbcdf | 4837 | get_oid_hex(buf.buf, &orig)) { |
4b83ce9f JS |
4838 | res = error(_("could not read orig-head")); |
4839 | goto cleanup_head_ref; | |
4840 | } | |
4ab867b8 | 4841 | strbuf_reset(&buf); |
4b83ce9f JS |
4842 | if (!read_oneliner(&buf, rebase_path_onto(), 0)) { |
4843 | res = error(_("could not read 'onto'")); | |
4844 | goto cleanup_head_ref; | |
4845 | } | |
96e832a5 JS |
4846 | msg = reflog_message(opts, "finish", "%s onto %s", |
4847 | head_ref.buf, buf.buf); | |
ae077771 | 4848 | if (update_ref(msg, head_ref.buf, &head, &orig, |
91774afc | 4849 | REF_NO_DEREF, UPDATE_REFS_MSG_ON_ERR)) { |
4b83ce9f JS |
4850 | res = error(_("could not update %s"), |
4851 | head_ref.buf); | |
4852 | goto cleanup_head_ref; | |
4853 | } | |
96e832a5 | 4854 | msg = reflog_message(opts, "finish", "returning to %s", |
4b83ce9f | 4855 | head_ref.buf); |
96e832a5 | 4856 | if (create_symref("HEAD", head_ref.buf, msg)) { |
4b83ce9f JS |
4857 | res = error(_("could not update HEAD to %s"), |
4858 | head_ref.buf); | |
4859 | goto cleanup_head_ref; | |
4860 | } | |
4861 | strbuf_reset(&buf); | |
4862 | } | |
4863 | ||
556907f1 JS |
4864 | if (opts->verbose) { |
4865 | struct rev_info log_tree_opt; | |
4866 | struct object_id orig, head; | |
4867 | ||
4868 | memset(&log_tree_opt, 0, sizeof(log_tree_opt)); | |
f11c9580 | 4869 | repo_init_revisions(r, &log_tree_opt, NULL); |
556907f1 JS |
4870 | log_tree_opt.diff = 1; |
4871 | log_tree_opt.diffopt.output_format = | |
4872 | DIFF_FORMAT_DIFFSTAT; | |
4873 | log_tree_opt.disable_stdin = 1; | |
4874 | ||
4875 | if (read_oneliner(&buf, rebase_path_orig_head(), 0) && | |
4a93b899 ÆAB |
4876 | !repo_get_oid(r, buf.buf, &orig) && |
4877 | !repo_get_oid(r, "HEAD", &head)) { | |
66f414f8 BW |
4878 | diff_tree_oid(&orig, &head, "", |
4879 | &log_tree_opt.diffopt); | |
556907f1 JS |
4880 | log_tree_diff_flush(&log_tree_opt); |
4881 | } | |
2108fe4a | 4882 | release_revisions(&log_tree_opt); |
556907f1 | 4883 | } |
25cb8df9 JS |
4884 | flush_rewritten_pending(); |
4885 | if (!stat(rebase_path_rewritten_list(), &st) && | |
4886 | st.st_size > 0) { | |
4887 | struct child_process child = CHILD_PROCESS_INIT; | |
96af564d | 4888 | struct run_hooks_opt hook_opt = RUN_HOOKS_OPT_INIT; |
25cb8df9 JS |
4889 | |
4890 | child.in = open(rebase_path_rewritten_list(), O_RDONLY); | |
4891 | child.git_cmd = 1; | |
c972bf4c JK |
4892 | strvec_push(&child.args, "notes"); |
4893 | strvec_push(&child.args, "copy"); | |
4894 | strvec_push(&child.args, "--for-rewrite=rebase"); | |
25cb8df9 JS |
4895 | /* we don't care if this copying failed */ |
4896 | run_command(&child); | |
79516045 | 4897 | |
96af564d ES |
4898 | hook_opt.path_to_stdin = rebase_path_rewritten_list(); |
4899 | strvec_push(&hook_opt.args, "rebase"); | |
4900 | run_hooks_opt("post-rewrite", &hook_opt); | |
25cb8df9 | 4901 | } |
be1bb600 | 4902 | apply_autostash(rebase_path_autostash()); |
25cb8df9 | 4903 | |
d7d90885 SG |
4904 | if (!opts->quiet) { |
4905 | if (!opts->verbose) | |
4906 | term_clear_line(); | |
899b49c4 | 4907 | fprintf(stderr, |
4d55d63b | 4908 | _("Successfully rebased and updated %s.\n"), |
899b49c4 | 4909 | head_ref.buf); |
d7d90885 | 4910 | } |
5da4966f | 4911 | |
556907f1 | 4912 | strbuf_release(&buf); |
4b83ce9f | 4913 | strbuf_release(&head_ref); |
89fc0b53 | 4914 | |
4611884e | 4915 | if (do_update_refs(r, opts->quiet)) |
89fc0b53 | 4916 | return -1; |
56dc3ab0 JS |
4917 | } |
4918 | ||
043a4492 RR |
4919 | /* |
4920 | * Sequence of picks finished successfully; cleanup by | |
4921 | * removing the .git/sequencer directory | |
4922 | */ | |
2863584f | 4923 | return sequencer_remove_state(opts); |
043a4492 RR |
4924 | } |
4925 | ||
39edfd5c | 4926 | static int continue_single_pick(struct repository *r, struct replay_opts *opts) |
043a4492 | 4927 | { |
0e906739 | 4928 | struct child_process cmd = CHILD_PROCESS_INIT; |
043a4492 | 4929 | |
c8e4159e | 4930 | if (!refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD") && |
b8825ef2 | 4931 | !refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) |
043a4492 | 4932 | return error(_("no cherry-pick or revert in progress")); |
39edfd5c | 4933 | |
0e906739 RS |
4934 | cmd.git_cmd = 1; |
4935 | strvec_push(&cmd.args, "commit"); | |
39edfd5c EN |
4936 | |
4937 | /* | |
4938 | * continue_single_pick() handles the case of recovering from a | |
4939 | * conflict. should_edit() doesn't handle that case; for a conflict, | |
4940 | * we want to edit if the user asked for it, or if they didn't specify | |
4941 | * and stdin is a tty. | |
4942 | */ | |
4943 | if (!opts->edit || (opts->edit < 0 && !isatty(0))) | |
4944 | /* | |
4945 | * Include --cleanup=strip as well because we don't want the | |
4946 | * "# Conflicts:" messages. | |
4947 | */ | |
0e906739 | 4948 | strvec_pushl(&cmd.args, "--no-edit", "--cleanup=strip", NULL); |
39edfd5c | 4949 | |
0e906739 | 4950 | return run_command(&cmd); |
043a4492 RR |
4951 | } |
4952 | ||
f11c9580 NTND |
4953 | static int commit_staged_changes(struct repository *r, |
4954 | struct replay_opts *opts, | |
15ef6931 | 4955 | struct todo_list *todo_list) |
9d93ccd1 | 4956 | { |
789b3eff | 4957 | unsigned int flags = ALLOW_EMPTY | EDIT_MSG; |
15ef6931 | 4958 | unsigned int final_fixup = 0, is_clean; |
9d93ccd1 | 4959 | |
f11c9580 | 4960 | if (has_unstaged_changes(r, 1)) |
9d93ccd1 | 4961 | return error(_("cannot rebase: You have unstaged changes.")); |
52632209 | 4962 | |
f11c9580 | 4963 | is_clean = !has_uncommitted_changes(r, 0); |
9d93ccd1 JS |
4964 | |
4965 | if (file_exists(rebase_path_amend())) { | |
4966 | struct strbuf rev = STRBUF_INIT; | |
092bbcdf | 4967 | struct object_id head, to_amend; |
9d93ccd1 | 4968 | |
4a93b899 | 4969 | if (repo_get_oid(r, "HEAD", &head)) |
9d93ccd1 JS |
4970 | return error(_("cannot amend non-existing commit")); |
4971 | if (!read_oneliner(&rev, rebase_path_amend(), 0)) | |
4972 | return error(_("invalid file: '%s'"), rebase_path_amend()); | |
092bbcdf | 4973 | if (get_oid_hex(rev.buf, &to_amend)) |
9d93ccd1 JS |
4974 | return error(_("invalid contents: '%s'"), |
4975 | rebase_path_amend()); | |
9001dc2a | 4976 | if (!is_clean && !oideq(&head, &to_amend)) |
9d93ccd1 JS |
4977 | return error(_("\nYou have uncommitted changes in your " |
4978 | "working tree. Please, commit them\n" | |
4979 | "first and then run 'git rebase " | |
4980 | "--continue' again.")); | |
15ef6931 JS |
4981 | /* |
4982 | * When skipping a failed fixup/squash, we need to edit the | |
4983 | * commit message, the current fixup list and count, and if it | |
4984 | * was the last fixup/squash in the chain, we need to clean up | |
4985 | * the commit message and if there was a squash, let the user | |
4986 | * edit it. | |
4987 | */ | |
10d2f354 JS |
4988 | if (!is_clean || !opts->current_fixup_count) |
4989 | ; /* this is not the final fixup */ | |
87ae8a1a | 4990 | else if (!oideq(&head, &to_amend) || |
10d2f354 JS |
4991 | !file_exists(rebase_path_stopped_sha())) { |
4992 | /* was a final fixup or squash done manually? */ | |
4993 | if (!is_fixup(peek_command(todo_list, 0))) { | |
4994 | unlink(rebase_path_fixup_msg()); | |
4995 | unlink(rebase_path_squash_msg()); | |
4996 | unlink(rebase_path_current_fixups()); | |
4997 | strbuf_reset(&opts->current_fixups); | |
4998 | opts->current_fixup_count = 0; | |
4999 | } | |
5000 | } else { | |
5001 | /* we are in a fixup/squash chain */ | |
15ef6931 JS |
5002 | const char *p = opts->current_fixups.buf; |
5003 | int len = opts->current_fixups.len; | |
5004 | ||
5005 | opts->current_fixup_count--; | |
5006 | if (!len) | |
5007 | BUG("Incorrect current_fixups:\n%s", p); | |
5008 | while (len && p[len - 1] != '\n') | |
5009 | len--; | |
5010 | strbuf_setlen(&opts->current_fixups, len); | |
5011 | if (write_message(p, len, rebase_path_current_fixups(), | |
5012 | 0) < 0) | |
5013 | return error(_("could not write file: '%s'"), | |
5014 | rebase_path_current_fixups()); | |
5015 | ||
5016 | /* | |
5017 | * If a fixup/squash in a fixup/squash chain failed, the | |
5018 | * commit message is already correct, no need to commit | |
5019 | * it again. | |
5020 | * | |
5021 | * Only if it is the final command in the fixup/squash | |
5022 | * chain, and only if the chain is longer than a single | |
5023 | * fixup/squash command (which was just skipped), do we | |
5024 | * actually need to re-commit with a cleaned up commit | |
5025 | * message. | |
5026 | */ | |
5027 | if (opts->current_fixup_count > 0 && | |
5028 | !is_fixup(peek_command(todo_list, 0))) { | |
5029 | final_fixup = 1; | |
5030 | /* | |
5031 | * If there was not a single "squash" in the | |
5032 | * chain, we only need to clean up the commit | |
5033 | * message, no need to bother the user with | |
5034 | * opening the commit message in the editor. | |
5035 | */ | |
5036 | if (!starts_with(p, "squash ") && | |
5037 | !strstr(p, "\nsquash ")) | |
5038 | flags = (flags & ~EDIT_MSG) | CLEANUP_MSG; | |
5039 | } else if (is_fixup(peek_command(todo_list, 0))) { | |
5040 | /* | |
5041 | * We need to update the squash message to skip | |
5042 | * the latest commit message. | |
5043 | */ | |
5044 | struct commit *commit; | |
5045 | const char *path = rebase_path_squash_msg(); | |
b3757442 | 5046 | const char *encoding = get_commit_output_encoding(); |
15ef6931 | 5047 | |
005af339 | 5048 | if (parse_head(r, &commit) || |
4a93b899 | 5049 | !(p = repo_logmsg_reencode(r, commit, NULL, encoding)) || |
15ef6931 | 5050 | write_message(p, strlen(p), path, 0)) { |
4a93b899 | 5051 | repo_unuse_commit_buffer(r, commit, p); |
15ef6931 JS |
5052 | return error(_("could not write file: " |
5053 | "'%s'"), path); | |
5054 | } | |
4a93b899 | 5055 | repo_unuse_commit_buffer(r, |
ecb5091f | 5056 | commit, p); |
15ef6931 JS |
5057 | } |
5058 | } | |
9d93ccd1 JS |
5059 | |
5060 | strbuf_release(&rev); | |
789b3eff | 5061 | flags |= AMEND_MSG; |
9d93ccd1 JS |
5062 | } |
5063 | ||
15ef6931 | 5064 | if (is_clean) { |
c8e4159e HWN |
5065 | if (refs_ref_exists(get_main_ref_store(r), |
5066 | "CHERRY_PICK_HEAD") && | |
5067 | refs_delete_ref(get_main_ref_store(r), "", | |
5068 | "CHERRY_PICK_HEAD", NULL, 0)) | |
15ef6931 | 5069 | return error(_("could not remove CHERRY_PICK_HEAD")); |
e5ee33e8 PW |
5070 | if (unlink(git_path_merge_msg(r)) && errno != ENOENT) |
5071 | return error_errno(_("could not remove '%s'"), | |
5072 | git_path_merge_msg(r)); | |
15ef6931 JS |
5073 | if (!final_fixup) |
5074 | return 0; | |
5075 | } | |
5076 | ||
20f4b044 | 5077 | if (run_git_commit(final_fixup ? NULL : rebase_path_message(), |
15ef6931 | 5078 | opts, flags)) |
9d93ccd1 JS |
5079 | return error(_("could not commit staged changes.")); |
5080 | unlink(rebase_path_amend()); | |
34e7771b | 5081 | unlink(git_path_merge_head(r)); |
5291828d | 5082 | unlink(git_path_auto_merge(r)); |
15ef6931 JS |
5083 | if (final_fixup) { |
5084 | unlink(rebase_path_fixup_msg()); | |
5085 | unlink(rebase_path_squash_msg()); | |
5086 | } | |
5087 | if (opts->current_fixup_count > 0) { | |
5088 | /* | |
5089 | * Whether final fixup or not, we just cleaned up the commit | |
5090 | * message... | |
5091 | */ | |
5092 | unlink(rebase_path_current_fixups()); | |
5093 | strbuf_reset(&opts->current_fixups); | |
5094 | opts->current_fixup_count = 0; | |
5095 | } | |
9d93ccd1 JS |
5096 | return 0; |
5097 | } | |
5098 | ||
f11c9580 | 5099 | int sequencer_continue(struct repository *r, struct replay_opts *opts) |
043a4492 | 5100 | { |
004fefa7 JS |
5101 | struct todo_list todo_list = TODO_LIST_INIT; |
5102 | int res; | |
043a4492 | 5103 | |
f11c9580 | 5104 | if (read_and_refresh_cache(r, opts)) |
2863584f JS |
5105 | return -1; |
5106 | ||
15ef6931 JS |
5107 | if (read_populate_opts(opts)) |
5108 | return -1; | |
9d93ccd1 | 5109 | if (is_rebase_i(opts)) { |
005af339 | 5110 | if ((res = read_populate_todo(r, &todo_list, opts))) |
15ef6931 | 5111 | goto release_todo_list; |
5a5445d8 AG |
5112 | |
5113 | if (file_exists(rebase_path_dropped())) { | |
5114 | if ((res = todo_list_check_against_backup(r, &todo_list))) | |
5115 | goto release_todo_list; | |
5116 | ||
5117 | unlink(rebase_path_dropped()); | |
5118 | } | |
5119 | ||
d188a60d | 5120 | opts->reflog_message = reflog_message(opts, "continue", NULL); |
f6b9413b AG |
5121 | if (commit_staged_changes(r, opts, &todo_list)) { |
5122 | res = -1; | |
5123 | goto release_todo_list; | |
5124 | } | |
4258a6da | 5125 | } else if (!file_exists(get_todo_path(opts))) |
39edfd5c | 5126 | return continue_single_pick(r, opts); |
005af339 | 5127 | else if ((res = read_populate_todo(r, &todo_list, opts))) |
004fefa7 | 5128 | goto release_todo_list; |
043a4492 | 5129 | |
4258a6da JS |
5130 | if (!is_rebase_i(opts)) { |
5131 | /* Verify that the conflict has been resolved */ | |
c8e4159e HWN |
5132 | if (refs_ref_exists(get_main_ref_store(r), |
5133 | "CHERRY_PICK_HEAD") || | |
b8825ef2 | 5134 | refs_ref_exists(get_main_ref_store(r), "REVERT_HEAD")) { |
39edfd5c | 5135 | res = continue_single_pick(r, opts); |
4258a6da JS |
5136 | if (res) |
5137 | goto release_todo_list; | |
5138 | } | |
ffc00a48 | 5139 | if (index_differs_from(r, "HEAD", NULL, 0)) { |
e1ff0a32 | 5140 | res = error_dirty_index(r, opts); |
004fefa7 | 5141 | goto release_todo_list; |
4258a6da JS |
5142 | } |
5143 | todo_list.current++; | |
ca98c6d4 JS |
5144 | } else if (file_exists(rebase_path_stopped_sha())) { |
5145 | struct strbuf buf = STRBUF_INIT; | |
5146 | struct object_id oid; | |
5147 | ||
3442c3d1 DL |
5148 | if (read_oneliner(&buf, rebase_path_stopped_sha(), |
5149 | READ_ONELINER_SKIP_IF_EMPTY) && | |
0512eabd | 5150 | !get_oid_hex(buf.buf, &oid)) |
ca98c6d4 JS |
5151 | record_in_rewritten(&oid, peek_command(&todo_list, 0)); |
5152 | strbuf_release(&buf); | |
043a4492 | 5153 | } |
4258a6da | 5154 | |
f11c9580 | 5155 | res = pick_commits(r, &todo_list, opts); |
004fefa7 JS |
5156 | release_todo_list: |
5157 | todo_list_release(&todo_list); | |
5158 | return res; | |
043a4492 RR |
5159 | } |
5160 | ||
f11c9580 NTND |
5161 | static int single_pick(struct repository *r, |
5162 | struct commit *cmit, | |
5163 | struct replay_opts *opts) | |
043a4492 | 5164 | { |
a47ba3c7 | 5165 | int check_todo; |
ae70e34f CM |
5166 | struct todo_item item; |
5167 | ||
5168 | item.command = opts->action == REPLAY_PICK ? | |
5169 | TODO_PICK : TODO_REVERT; | |
5170 | item.commit = cmit; | |
a47ba3c7 | 5171 | |
d188a60d | 5172 | opts->reflog_message = sequencer_reflog_action(opts); |
ae70e34f | 5173 | return do_pick_commit(r, &item, opts, 0, &check_todo); |
043a4492 RR |
5174 | } |
5175 | ||
f11c9580 NTND |
5176 | int sequencer_pick_revisions(struct repository *r, |
5177 | struct replay_opts *opts) | |
043a4492 | 5178 | { |
004fefa7 | 5179 | struct todo_list todo_list = TODO_LIST_INIT; |
1e43ed98 | 5180 | struct object_id oid; |
004fefa7 | 5181 | int i, res; |
043a4492 | 5182 | |
2863584f | 5183 | assert(opts->revs); |
f11c9580 | 5184 | if (read_and_refresh_cache(r, opts)) |
0d9c6dc9 | 5185 | return -1; |
043a4492 | 5186 | |
21246dbb | 5187 | for (i = 0; i < opts->revs->pending.nr; i++) { |
1e43ed98 | 5188 | struct object_id oid; |
21246dbb MV |
5189 | const char *name = opts->revs->pending.objects[i].name; |
5190 | ||
5191 | /* This happens when using --stdin. */ | |
5192 | if (!strlen(name)) | |
5193 | continue; | |
5194 | ||
4a93b899 | 5195 | if (!repo_get_oid(r, name, &oid)) { |
f11c9580 NTND |
5196 | if (!lookup_commit_reference_gently(r, &oid, 1)) { |
5197 | enum object_type type = oid_object_info(r, | |
0df8e965 | 5198 | &oid, |
abef9020 | 5199 | NULL); |
b9b946d4 | 5200 | return error(_("%s: can't cherry-pick a %s"), |
debca9d2 | 5201 | name, type_name(type)); |
7c0b0d8d | 5202 | } |
21246dbb | 5203 | } else |
b9b946d4 | 5204 | return error(_("%s: bad revision"), name); |
21246dbb MV |
5205 | } |
5206 | ||
043a4492 RR |
5207 | /* |
5208 | * If we were called as "git cherry-pick <commit>", just | |
5209 | * cherry-pick/revert it, set CHERRY_PICK_HEAD / | |
5210 | * REVERT_HEAD, and don't touch the sequencer state. | |
5211 | * This means it is possible to cherry-pick in the middle | |
5212 | * of a cherry-pick sequence. | |
5213 | */ | |
5214 | if (opts->revs->cmdline.nr == 1 && | |
5215 | opts->revs->cmdline.rev->whence == REV_CMD_REV && | |
5216 | opts->revs->no_walk && | |
5217 | !opts->revs->cmdline.rev->flags) { | |
5218 | struct commit *cmit; | |
5219 | if (prepare_revision_walk(opts->revs)) | |
b9b946d4 | 5220 | return error(_("revision walk setup failed")); |
043a4492 | 5221 | cmit = get_revision(opts->revs); |
c5e358d0 JK |
5222 | if (!cmit) |
5223 | return error(_("empty commit set passed")); | |
5224 | if (get_revision(opts->revs)) | |
5225 | BUG("unexpected extra commit from walk"); | |
f11c9580 | 5226 | return single_pick(r, cmit, opts); |
043a4492 RR |
5227 | } |
5228 | ||
5229 | /* | |
5230 | * Start a new cherry-pick/ revert sequence; but | |
5231 | * first, make sure that an existing one isn't in | |
5232 | * progress | |
5233 | */ | |
5234 | ||
34b0528b | 5235 | if (walk_revs_populate_todo(&todo_list, opts) || |
6a1f9046 | 5236 | create_seq_dir(r) < 0) |
043a4492 | 5237 | return -1; |
4a93b899 | 5238 | if (repo_get_oid(r, "HEAD", &oid) && (opts->action == REPLAY_REVERT)) |
93b3df6f | 5239 | return error(_("can't revert as initial commit")); |
1e43ed98 | 5240 | if (save_head(oid_to_hex(&oid))) |
311fd397 | 5241 | return -1; |
88d5a271 JS |
5242 | if (save_opts(opts)) |
5243 | return -1; | |
1e41229d | 5244 | update_abort_safety_file(); |
f11c9580 | 5245 | res = pick_commits(r, &todo_list, opts); |
004fefa7 JS |
5246 | todo_list_release(&todo_list); |
5247 | return res; | |
043a4492 | 5248 | } |
5ed75e2a | 5249 | |
66e83d9b | 5250 | void append_signoff(struct strbuf *msgbuf, size_t ignore_footer, unsigned flag) |
5ed75e2a | 5251 | { |
bab4d109 | 5252 | unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP; |
5ed75e2a | 5253 | struct strbuf sob = STRBUF_INIT; |
bab4d109 | 5254 | int has_footer; |
5ed75e2a MV |
5255 | |
5256 | strbuf_addstr(&sob, sign_off_header); | |
39ab4d09 | 5257 | strbuf_addstr(&sob, fmt_name(WANT_COMMITTER_IDENT)); |
5ed75e2a | 5258 | strbuf_addch(&sob, '\n'); |
bab4d109 | 5259 | |
44dc738a JT |
5260 | if (!ignore_footer) |
5261 | strbuf_complete_line(msgbuf); | |
5262 | ||
bab4d109 BC |
5263 | /* |
5264 | * If the whole message buffer is equal to the sob, pretend that we | |
5265 | * found a conforming footer with a matching sob | |
5266 | */ | |
5267 | if (msgbuf->len - ignore_footer == sob.len && | |
5268 | !strncmp(msgbuf->buf, sob.buf, sob.len)) | |
5269 | has_footer = 3; | |
5270 | else | |
5271 | has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer); | |
5272 | ||
33f2f9ab BC |
5273 | if (!has_footer) { |
5274 | const char *append_newlines = NULL; | |
5275 | size_t len = msgbuf->len - ignore_footer; | |
5276 | ||
8c613fd5 BC |
5277 | if (!len) { |
5278 | /* | |
5279 | * The buffer is completely empty. Leave foom for | |
5280 | * the title and body to be filled in by the user. | |
5281 | */ | |
33f2f9ab | 5282 | append_newlines = "\n\n"; |
8c613fd5 BC |
5283 | } else if (len == 1) { |
5284 | /* | |
5285 | * Buffer contains a single newline. Add another | |
5286 | * so that we leave room for the title and body. | |
5287 | */ | |
5288 | append_newlines = "\n"; | |
5289 | } else if (msgbuf->buf[len - 2] != '\n') { | |
5290 | /* | |
5291 | * Buffer ends with a single newline. Add another | |
5292 | * so that there is an empty line between the message | |
5293 | * body and the sob. | |
5294 | */ | |
33f2f9ab | 5295 | append_newlines = "\n"; |
8c613fd5 | 5296 | } /* else, the buffer already ends with two newlines. */ |
33f2f9ab BC |
5297 | |
5298 | if (append_newlines) | |
5299 | strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0, | |
5300 | append_newlines, strlen(append_newlines)); | |
5ed75e2a | 5301 | } |
bab4d109 BC |
5302 | |
5303 | if (has_footer != 3 && (!no_dup_sob || has_footer != 2)) | |
5304 | strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0, | |
5305 | sob.buf, sob.len); | |
5306 | ||
5ed75e2a MV |
5307 | strbuf_release(&sob); |
5308 | } | |
62db5247 | 5309 | |
1644c73c JS |
5310 | struct labels_entry { |
5311 | struct hashmap_entry entry; | |
5312 | char label[FLEX_ARRAY]; | |
5313 | }; | |
5314 | ||
5cf88fd8 | 5315 | static int labels_cmp(const void *fndata UNUSED, |
02c3c59e | 5316 | const struct hashmap_entry *eptr, |
939af16e | 5317 | const struct hashmap_entry *entry_or_key, const void *key) |
1644c73c | 5318 | { |
939af16e EW |
5319 | const struct labels_entry *a, *b; |
5320 | ||
5321 | a = container_of(eptr, const struct labels_entry, entry); | |
5322 | b = container_of(entry_or_key, const struct labels_entry, entry); | |
5323 | ||
1644c73c JS |
5324 | return key ? strcmp(a->label, key) : strcmp(a->label, b->label); |
5325 | } | |
5326 | ||
5327 | struct string_entry { | |
5328 | struct oidmap_entry entry; | |
5329 | char string[FLEX_ARRAY]; | |
5330 | }; | |
5331 | ||
5332 | struct label_state { | |
5333 | struct oidmap commit2label; | |
5334 | struct hashmap labels; | |
5335 | struct strbuf buf; | |
5336 | }; | |
5337 | ||
5338 | static const char *label_oid(struct object_id *oid, const char *label, | |
5339 | struct label_state *state) | |
5340 | { | |
5341 | struct labels_entry *labels_entry; | |
5342 | struct string_entry *string_entry; | |
5343 | struct object_id dummy; | |
1644c73c JS |
5344 | int i; |
5345 | ||
5346 | string_entry = oidmap_get(&state->commit2label, oid); | |
5347 | if (string_entry) | |
5348 | return string_entry->string; | |
5349 | ||
5350 | /* | |
5351 | * For "uninteresting" commits, i.e. commits that are not to be | |
5352 | * rebased, and which can therefore not be labeled, we use a unique | |
5353 | * abbreviation of the commit name. This is slightly more complicated | |
c7c33f50 | 5354 | * than calling repo_find_unique_abbrev() because we also need to make |
1644c73c JS |
5355 | * sure that the abbreviation does not conflict with any other |
5356 | * label. | |
5357 | * | |
5358 | * We disallow "interesting" commits to be labeled by a string that | |
5359 | * is a valid full-length hash, to ensure that we always can find an | |
5360 | * abbreviation for any uninteresting commit's names that does not | |
5361 | * clash with any other label. | |
5362 | */ | |
867bc1d2 | 5363 | strbuf_reset(&state->buf); |
1644c73c JS |
5364 | if (!label) { |
5365 | char *p; | |
5366 | ||
4439c7a3 | 5367 | strbuf_grow(&state->buf, GIT_MAX_HEXSZ); |
1644c73c JS |
5368 | label = p = state->buf.buf; |
5369 | ||
d850b7a5 ÆAB |
5370 | repo_find_unique_abbrev_r(the_repository, p, oid, |
5371 | default_abbrev); | |
1644c73c JS |
5372 | |
5373 | /* | |
5374 | * We may need to extend the abbreviated hash so that there is | |
5375 | * no conflicting label. | |
5376 | */ | |
5377 | if (hashmap_get_from_hash(&state->labels, strihash(p), p)) { | |
5378 | size_t i = strlen(p) + 1; | |
5379 | ||
5380 | oid_to_hex_r(p, oid); | |
4439c7a3 | 5381 | for (; i < the_hash_algo->hexsz; i++) { |
1644c73c JS |
5382 | char save = p[i]; |
5383 | p[i] = '\0'; | |
5384 | if (!hashmap_get_from_hash(&state->labels, | |
5385 | strihash(p), p)) | |
5386 | break; | |
5387 | p[i] = save; | |
5388 | } | |
5389 | } | |
867bc1d2 | 5390 | } else { |
1644c73c JS |
5391 | struct strbuf *buf = &state->buf; |
5392 | ||
1644c73c | 5393 | /* |
cd552227 MR |
5394 | * Sanitize labels by replacing non-alpha-numeric characters |
5395 | * (including white-space ones) by dashes, as they might be | |
5396 | * illegal in file names (and hence in ref names). | |
5397 | * | |
5398 | * Note that we retain non-ASCII UTF-8 characters (identified | |
5399 | * via the most significant bit). They should be all acceptable | |
5400 | * in file names. We do not validate the UTF-8 here, that's not | |
5401 | * the job of this function. | |
1644c73c | 5402 | */ |
867bc1d2 | 5403 | for (; *label; label++) |
cd552227 MR |
5404 | if ((*label & 0x80) || isalnum(*label)) |
5405 | strbuf_addch(buf, *label); | |
5406 | /* avoid leading dash and double-dashes */ | |
5407 | else if (buf->len && buf->buf[buf->len - 1] != '-') | |
5408 | strbuf_addch(buf, '-'); | |
5409 | if (!buf->len) { | |
5410 | strbuf_addstr(buf, "rev-"); | |
5411 | strbuf_add_unique_abbrev(buf, oid, default_abbrev); | |
5412 | } | |
867bc1d2 | 5413 | label = buf->buf; |
1644c73c | 5414 | |
867bc1d2 JS |
5415 | if ((buf->len == the_hash_algo->hexsz && |
5416 | !get_oid_hex(label, &dummy)) || | |
5417 | (buf->len == 1 && *label == '#') || | |
5418 | hashmap_get_from_hash(&state->labels, | |
5419 | strihash(label), label)) { | |
5420 | /* | |
5421 | * If the label already exists, or if the label is a | |
5422 | * valid full OID, or the label is a '#' (which we use | |
5423 | * as a separator between merge heads and oneline), we | |
5424 | * append a dash and a number to make it unique. | |
5425 | */ | |
5426 | size_t len = buf->len; | |
1644c73c | 5427 | |
867bc1d2 JS |
5428 | for (i = 2; ; i++) { |
5429 | strbuf_setlen(buf, len); | |
5430 | strbuf_addf(buf, "-%d", i); | |
5431 | if (!hashmap_get_from_hash(&state->labels, | |
5432 | strihash(buf->buf), | |
5433 | buf->buf)) | |
5434 | break; | |
5435 | } | |
1644c73c | 5436 | |
867bc1d2 JS |
5437 | label = buf->buf; |
5438 | } | |
1644c73c JS |
5439 | } |
5440 | ||
5441 | FLEX_ALLOC_STR(labels_entry, label, label); | |
d22245a2 | 5442 | hashmap_entry_init(&labels_entry->entry, strihash(label)); |
b94e5c1d | 5443 | hashmap_add(&state->labels, &labels_entry->entry); |
1644c73c JS |
5444 | |
5445 | FLEX_ALLOC_STR(string_entry, string, label); | |
5446 | oidcpy(&string_entry->entry.oid, oid); | |
5447 | oidmap_put(&state->commit2label, string_entry); | |
5448 | ||
5449 | return string_entry->string; | |
5450 | } | |
5451 | ||
5452 | static int make_script_with_merges(struct pretty_print_context *pp, | |
d358fc28 | 5453 | struct rev_info *revs, struct strbuf *out, |
1644c73c JS |
5454 | unsigned flags) |
5455 | { | |
b9cbd295 | 5456 | int keep_empty = flags & TODO_LIST_KEEP_EMPTY; |
7543f6f4 | 5457 | int rebase_cousins = flags & TODO_LIST_REBASE_COUSINS; |
e1fac531 | 5458 | int root_with_onto = flags & TODO_LIST_ROOT_WITH_ONTO; |
767a4ca6 | 5459 | int skipped_commit = 0; |
1644c73c JS |
5460 | struct strbuf buf = STRBUF_INIT, oneline = STRBUF_INIT; |
5461 | struct strbuf label = STRBUF_INIT; | |
5462 | struct commit_list *commits = NULL, **tail = &commits, *iter; | |
5463 | struct commit_list *tips = NULL, **tips_tail = &tips; | |
5464 | struct commit *commit; | |
5465 | struct oidmap commit2todo = OIDMAP_INIT; | |
5466 | struct string_entry *entry; | |
5467 | struct oidset interesting = OIDSET_INIT, child_seen = OIDSET_INIT, | |
5468 | shown = OIDSET_INIT; | |
5469 | struct label_state state = { OIDMAP_INIT, { NULL }, STRBUF_INIT }; | |
5470 | ||
5471 | int abbr = flags & TODO_LIST_ABBREVIATE_CMDS; | |
5472 | const char *cmd_pick = abbr ? "p" : "pick", | |
5473 | *cmd_label = abbr ? "l" : "label", | |
5474 | *cmd_reset = abbr ? "t" : "reset", | |
5475 | *cmd_merge = abbr ? "m" : "merge"; | |
5476 | ||
5477 | oidmap_init(&commit2todo, 0); | |
5478 | oidmap_init(&state.commit2label, 0); | |
939af16e | 5479 | hashmap_init(&state.labels, labels_cmp, NULL, 0); |
1644c73c JS |
5480 | strbuf_init(&state.buf, 32); |
5481 | ||
5482 | if (revs->cmdline.nr && (revs->cmdline.rev[0].flags & BOTTOM)) { | |
e02058a7 | 5483 | struct labels_entry *onto_label_entry; |
1644c73c JS |
5484 | struct object_id *oid = &revs->cmdline.rev[0].item->oid; |
5485 | FLEX_ALLOC_STR(entry, string, "onto"); | |
5486 | oidcpy(&entry->entry.oid, oid); | |
5487 | oidmap_put(&state.commit2label, entry); | |
e02058a7 ĐTCD |
5488 | |
5489 | FLEX_ALLOC_STR(onto_label_entry, label, "onto"); | |
5490 | hashmap_entry_init(&onto_label_entry->entry, strihash("onto")); | |
5491 | hashmap_add(&state.labels, &onto_label_entry->entry); | |
1644c73c JS |
5492 | } |
5493 | ||
5494 | /* | |
5495 | * First phase: | |
5496 | * - get onelines for all commits | |
5497 | * - gather all branch tips (i.e. 2nd or later parents of merges) | |
5498 | * - label all branch tips | |
5499 | */ | |
5500 | while ((commit = get_revision(revs))) { | |
5501 | struct commit_list *to_merge; | |
1644c73c JS |
5502 | const char *p1, *p2; |
5503 | struct object_id *oid; | |
5504 | int is_empty; | |
5505 | ||
5506 | tail = &commit_list_insert(commit, tail)->next; | |
5507 | oidset_insert(&interesting, &commit->object.oid); | |
5508 | ||
5509 | is_empty = is_original_commit_empty(commit); | |
767a4ca6 JS |
5510 | if (!is_empty && (commit->object.flags & PATCHSAME)) { |
5511 | if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS) | |
5512 | warning(_("skipped previously applied commit %s"), | |
5513 | short_commit_name(commit)); | |
5514 | skipped_commit = 1; | |
1644c73c | 5515 | continue; |
767a4ca6 | 5516 | } |
b9cbd295 EN |
5517 | if (is_empty && !keep_empty) |
5518 | continue; | |
1644c73c JS |
5519 | |
5520 | strbuf_reset(&oneline); | |
5521 | pretty_print_commit(pp, commit, &oneline); | |
5522 | ||
5523 | to_merge = commit->parents ? commit->parents->next : NULL; | |
5524 | if (!to_merge) { | |
5525 | /* non-merge commit: easy case */ | |
5526 | strbuf_reset(&buf); | |
1644c73c JS |
5527 | strbuf_addf(&buf, "%s %s %s", cmd_pick, |
5528 | oid_to_hex(&commit->object.oid), | |
5529 | oneline.buf); | |
1b5735f7 EN |
5530 | if (is_empty) |
5531 | strbuf_addf(&buf, " %c empty", | |
5532 | comment_line_char); | |
1644c73c JS |
5533 | |
5534 | FLEX_ALLOC_STR(entry, string, buf.buf); | |
5535 | oidcpy(&entry->entry.oid, &commit->object.oid); | |
5536 | oidmap_put(&commit2todo, entry); | |
5537 | ||
5538 | continue; | |
5539 | } | |
5540 | ||
1644c73c JS |
5541 | /* Create a label */ |
5542 | strbuf_reset(&label); | |
5543 | if (skip_prefix(oneline.buf, "Merge ", &p1) && | |
5544 | (p1 = strchr(p1, '\'')) && | |
5545 | (p2 = strchr(++p1, '\''))) | |
5546 | strbuf_add(&label, p1, p2 - p1); | |
5547 | else if (skip_prefix(oneline.buf, "Merge pull request ", | |
5548 | &p1) && | |
5549 | (p1 = strstr(p1, " from "))) | |
5550 | strbuf_addstr(&label, p1 + strlen(" from ")); | |
5551 | else | |
5552 | strbuf_addbuf(&label, &oneline); | |
5553 | ||
1644c73c JS |
5554 | strbuf_reset(&buf); |
5555 | strbuf_addf(&buf, "%s -C %s", | |
5556 | cmd_merge, oid_to_hex(&commit->object.oid)); | |
5557 | ||
2b6ad0f4 JS |
5558 | /* label the tips of merged branches */ |
5559 | for (; to_merge; to_merge = to_merge->next) { | |
5560 | oid = &to_merge->item->object.oid; | |
5561 | strbuf_addch(&buf, ' '); | |
5562 | ||
5563 | if (!oidset_contains(&interesting, oid)) { | |
5564 | strbuf_addstr(&buf, label_oid(oid, NULL, | |
5565 | &state)); | |
5566 | continue; | |
5567 | } | |
1644c73c | 5568 | |
1644c73c JS |
5569 | tips_tail = &commit_list_insert(to_merge->item, |
5570 | tips_tail)->next; | |
5571 | ||
5572 | strbuf_addstr(&buf, label_oid(oid, label.buf, &state)); | |
5573 | } | |
5574 | strbuf_addf(&buf, " # %s", oneline.buf); | |
5575 | ||
5576 | FLEX_ALLOC_STR(entry, string, buf.buf); | |
5577 | oidcpy(&entry->entry.oid, &commit->object.oid); | |
5578 | oidmap_put(&commit2todo, entry); | |
5579 | } | |
767a4ca6 JS |
5580 | if (skipped_commit) |
5581 | advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS, | |
5582 | _("use --reapply-cherry-picks to include skipped commits")); | |
1644c73c JS |
5583 | |
5584 | /* | |
5585 | * Second phase: | |
5586 | * - label branch points | |
5587 | * - add HEAD to the branch tips | |
5588 | */ | |
5589 | for (iter = commits; iter; iter = iter->next) { | |
5590 | struct commit_list *parent = iter->item->parents; | |
5591 | for (; parent; parent = parent->next) { | |
5592 | struct object_id *oid = &parent->item->object.oid; | |
5593 | if (!oidset_contains(&interesting, oid)) | |
5594 | continue; | |
6e8fc70f | 5595 | if (oidset_insert(&child_seen, oid)) |
1644c73c JS |
5596 | label_oid(oid, "branch-point", &state); |
5597 | } | |
5598 | ||
15beaaa3 | 5599 | /* Add HEAD as implicit "tip of branch" */ |
1644c73c JS |
5600 | if (!iter->next) |
5601 | tips_tail = &commit_list_insert(iter->item, | |
5602 | tips_tail)->next; | |
5603 | } | |
5604 | ||
5605 | /* | |
5606 | * Third phase: output the todo list. This is a bit tricky, as we | |
5607 | * want to avoid jumping back and forth between revisions. To | |
5608 | * accomplish that goal, we walk backwards from the branch tips, | |
5609 | * gathering commits not yet shown, reversing the list on the fly, | |
5610 | * then outputting that list (labeling revisions as needed). | |
5611 | */ | |
d358fc28 | 5612 | strbuf_addf(out, "%s onto\n", cmd_label); |
1644c73c JS |
5613 | for (iter = tips; iter; iter = iter->next) { |
5614 | struct commit_list *list = NULL, *iter2; | |
5615 | ||
5616 | commit = iter->item; | |
5617 | if (oidset_contains(&shown, &commit->object.oid)) | |
5618 | continue; | |
5619 | entry = oidmap_get(&state.commit2label, &commit->object.oid); | |
5620 | ||
5621 | if (entry) | |
d358fc28 | 5622 | strbuf_addf(out, "\n%c Branch %s\n", comment_line_char, entry->string); |
1644c73c | 5623 | else |
d358fc28 | 5624 | strbuf_addch(out, '\n'); |
1644c73c JS |
5625 | |
5626 | while (oidset_contains(&interesting, &commit->object.oid) && | |
5627 | !oidset_contains(&shown, &commit->object.oid)) { | |
5628 | commit_list_insert(commit, &list); | |
5629 | if (!commit->parents) { | |
5630 | commit = NULL; | |
5631 | break; | |
5632 | } | |
5633 | commit = commit->parents->item; | |
5634 | } | |
5635 | ||
5636 | if (!commit) | |
d358fc28 | 5637 | strbuf_addf(out, "%s %s\n", cmd_reset, |
e1fac531 JS |
5638 | rebase_cousins || root_with_onto ? |
5639 | "onto" : "[new root]"); | |
1644c73c JS |
5640 | else { |
5641 | const char *to = NULL; | |
5642 | ||
5643 | entry = oidmap_get(&state.commit2label, | |
5644 | &commit->object.oid); | |
5645 | if (entry) | |
5646 | to = entry->string; | |
7543f6f4 JS |
5647 | else if (!rebase_cousins) |
5648 | to = label_oid(&commit->object.oid, NULL, | |
5649 | &state); | |
1644c73c JS |
5650 | |
5651 | if (!to || !strcmp(to, "onto")) | |
d358fc28 | 5652 | strbuf_addf(out, "%s onto\n", cmd_reset); |
1644c73c JS |
5653 | else { |
5654 | strbuf_reset(&oneline); | |
5655 | pretty_print_commit(pp, commit, &oneline); | |
d358fc28 AG |
5656 | strbuf_addf(out, "%s %s # %s\n", |
5657 | cmd_reset, to, oneline.buf); | |
1644c73c JS |
5658 | } |
5659 | } | |
5660 | ||
5661 | for (iter2 = list; iter2; iter2 = iter2->next) { | |
5662 | struct object_id *oid = &iter2->item->object.oid; | |
5663 | entry = oidmap_get(&commit2todo, oid); | |
5664 | /* only show if not already upstream */ | |
5665 | if (entry) | |
d358fc28 | 5666 | strbuf_addf(out, "%s\n", entry->string); |
1644c73c JS |
5667 | entry = oidmap_get(&state.commit2label, oid); |
5668 | if (entry) | |
d358fc28 AG |
5669 | strbuf_addf(out, "%s %s\n", |
5670 | cmd_label, entry->string); | |
1644c73c JS |
5671 | oidset_insert(&shown, oid); |
5672 | } | |
5673 | ||
5674 | free_commit_list(list); | |
5675 | } | |
5676 | ||
5677 | free_commit_list(commits); | |
5678 | free_commit_list(tips); | |
5679 | ||
5680 | strbuf_release(&label); | |
5681 | strbuf_release(&oneline); | |
5682 | strbuf_release(&buf); | |
5683 | ||
5684 | oidmap_free(&commit2todo, 1); | |
5685 | oidmap_free(&state.commit2label, 1); | |
6da1a258 | 5686 | hashmap_clear_and_free(&state.labels, struct labels_entry, entry); |
1644c73c JS |
5687 | strbuf_release(&state.buf); |
5688 | ||
5689 | return 0; | |
5690 | } | |
5691 | ||
d358fc28 AG |
5692 | int sequencer_make_script(struct repository *r, struct strbuf *out, int argc, |
5693 | const char **argv, unsigned flags) | |
62db5247 JS |
5694 | { |
5695 | char *format = NULL; | |
5696 | struct pretty_print_context pp = {0}; | |
62db5247 JS |
5697 | struct rev_info revs; |
5698 | struct commit *commit; | |
b9cbd295 | 5699 | int keep_empty = flags & TODO_LIST_KEEP_EMPTY; |
d8ae6c84 | 5700 | const char *insn = flags & TODO_LIST_ABBREVIATE_CMDS ? "p" : "pick"; |
1644c73c | 5701 | int rebase_merges = flags & TODO_LIST_REBASE_MERGES; |
0fcb4f6b | 5702 | int reapply_cherry_picks = flags & TODO_LIST_REAPPLY_CHERRY_PICKS; |
767a4ca6 | 5703 | int skipped_commit = 0; |
0139c58a | 5704 | int ret = 0; |
62db5247 | 5705 | |
f11c9580 | 5706 | repo_init_revisions(r, &revs, NULL); |
62db5247 | 5707 | revs.verbose_header = 1; |
1644c73c JS |
5708 | if (!rebase_merges) |
5709 | revs.max_parents = 1; | |
0fcb4f6b | 5710 | revs.cherry_mark = !reapply_cherry_picks; |
62db5247 JS |
5711 | revs.limited = 1; |
5712 | revs.reverse = 1; | |
5713 | revs.right_only = 1; | |
5714 | revs.sort_order = REV_SORT_IN_GRAPH_ORDER; | |
5715 | revs.topo_order = 1; | |
5716 | ||
5717 | revs.pretty_given = 1; | |
5718 | git_config_get_string("rebase.instructionFormat", &format); | |
5719 | if (!format || !*format) { | |
5720 | free(format); | |
5721 | format = xstrdup("%s"); | |
5722 | } | |
5723 | get_commit_format(format, &revs); | |
5724 | free(format); | |
5725 | pp.fmt = revs.commit_format; | |
5726 | pp.output_encoding = get_log_output_encoding(); | |
5727 | ||
0139c58a ÆAB |
5728 | if (setup_revisions(argc, argv, &revs, NULL) > 1) { |
5729 | ret = error(_("make_script: unhandled options")); | |
5730 | goto cleanup; | |
5731 | } | |
62db5247 | 5732 | |
0139c58a ÆAB |
5733 | if (prepare_revision_walk(&revs) < 0) { |
5734 | ret = error(_("make_script: error preparing revisions")); | |
5735 | goto cleanup; | |
5736 | } | |
62db5247 | 5737 | |
0139c58a ÆAB |
5738 | if (rebase_merges) { |
5739 | ret = make_script_with_merges(&pp, &revs, out, flags); | |
5740 | goto cleanup; | |
5741 | } | |
1644c73c | 5742 | |
62db5247 | 5743 | while ((commit = get_revision(&revs))) { |
d48e5e21 | 5744 | int is_empty = is_original_commit_empty(commit); |
76ea2358 | 5745 | |
767a4ca6 JS |
5746 | if (!is_empty && (commit->object.flags & PATCHSAME)) { |
5747 | if (flags & TODO_LIST_WARN_SKIPPED_CHERRY_PICKS) | |
5748 | warning(_("skipped previously applied commit %s"), | |
5749 | short_commit_name(commit)); | |
5750 | skipped_commit = 1; | |
76ea2358 | 5751 | continue; |
767a4ca6 | 5752 | } |
b9cbd295 EN |
5753 | if (is_empty && !keep_empty) |
5754 | continue; | |
d358fc28 | 5755 | strbuf_addf(out, "%s %s ", insn, |
d8ae6c84 | 5756 | oid_to_hex(&commit->object.oid)); |
d358fc28 | 5757 | pretty_print_commit(&pp, commit, out); |
1b5735f7 EN |
5758 | if (is_empty) |
5759 | strbuf_addf(out, " %c empty", comment_line_char); | |
d358fc28 | 5760 | strbuf_addch(out, '\n'); |
62db5247 | 5761 | } |
767a4ca6 JS |
5762 | if (skipped_commit) |
5763 | advise_if_enabled(ADVICE_SKIPPED_CHERRY_PICKS, | |
5764 | _("use --reapply-cherry-picks to include skipped commits")); | |
0139c58a ÆAB |
5765 | cleanup: |
5766 | release_revisions(&revs); | |
5767 | return ret; | |
62db5247 | 5768 | } |
3546c8d9 | 5769 | |
0cce4a27 LB |
5770 | /* |
5771 | * Add commands after pick and (series of) squash/fixup commands | |
5772 | * in the todo list. | |
5773 | */ | |
17919c35 JS |
5774 | static void todo_list_add_exec_commands(struct todo_list *todo_list, |
5775 | struct string_list *commands) | |
3546c8d9 | 5776 | { |
683153a4 AG |
5777 | struct strbuf *buf = &todo_list->buf; |
5778 | size_t base_offset = buf->len; | |
5779 | int i, insert, nr = 0, alloc = 0; | |
5780 | struct todo_item *items = NULL, *base_items = NULL; | |
3546c8d9 | 5781 | |
ca56dadb | 5782 | CALLOC_ARRAY(base_items, commands->nr); |
683153a4 AG |
5783 | for (i = 0; i < commands->nr; i++) { |
5784 | size_t command_len = strlen(commands->items[i].string); | |
3546c8d9 | 5785 | |
683153a4 AG |
5786 | strbuf_addstr(buf, commands->items[i].string); |
5787 | strbuf_addch(buf, '\n'); | |
3546c8d9 | 5788 | |
683153a4 AG |
5789 | base_items[i].command = TODO_EXEC; |
5790 | base_items[i].offset_in_buf = base_offset; | |
e57d2c59 PW |
5791 | base_items[i].arg_offset = base_offset; |
5792 | base_items[i].arg_len = command_len; | |
3546c8d9 | 5793 | |
683153a4 | 5794 | base_offset += command_len + 1; |
3546c8d9 JS |
5795 | } |
5796 | ||
1ace63bc JS |
5797 | /* |
5798 | * Insert <commands> after every pick. Here, fixup/squash chains | |
5799 | * are considered part of the pick, so we insert the commands *after* | |
5800 | * those chains if there are any. | |
683153a4 | 5801 | * |
15beaaa3 | 5802 | * As we insert the exec commands immediately after rearranging |
683153a4 AG |
5803 | * any fixups and before the user edits the list, a fixup chain |
5804 | * can never contain comments (any comments are empty picks that | |
5805 | * have been commented out because the user did not specify | |
5806 | * --keep-empty). So, it is safe to insert an exec command | |
5807 | * without looking at the command following a comment. | |
1ace63bc | 5808 | */ |
683153a4 AG |
5809 | insert = 0; |
5810 | for (i = 0; i < todo_list->nr; i++) { | |
5811 | enum todo_command command = todo_list->items[i].command; | |
5812 | if (insert && !is_fixup(command)) { | |
5813 | ALLOC_GROW(items, nr + commands->nr, alloc); | |
5814 | COPY_ARRAY(items + nr, base_items, commands->nr); | |
5815 | nr += commands->nr; | |
5816 | ||
5817 | insert = 0; | |
0cce4a27 | 5818 | } |
1ace63bc | 5819 | |
683153a4 AG |
5820 | ALLOC_GROW(items, nr + 1, alloc); |
5821 | items[nr++] = todo_list->items[i]; | |
5822 | ||
1ace63bc | 5823 | if (command == TODO_PICK || command == TODO_MERGE) |
683153a4 | 5824 | insert = 1; |
0cce4a27 LB |
5825 | } |
5826 | ||
1ace63bc | 5827 | /* insert or append final <commands> */ |
cc9dcdee | 5828 | if (insert) { |
683153a4 AG |
5829 | ALLOC_GROW(items, nr + commands->nr, alloc); |
5830 | COPY_ARRAY(items + nr, base_items, commands->nr); | |
5831 | nr += commands->nr; | |
5832 | } | |
0cce4a27 | 5833 | |
683153a4 AG |
5834 | free(base_items); |
5835 | FREE_AND_NULL(todo_list->items); | |
5836 | todo_list->items = items; | |
5837 | todo_list->nr = nr; | |
5838 | todo_list->alloc = alloc; | |
0cce4a27 | 5839 | } |
3546c8d9 | 5840 | |
616d7740 AG |
5841 | static void todo_list_to_strbuf(struct repository *r, struct todo_list *todo_list, |
5842 | struct strbuf *buf, int num, unsigned flags) | |
3546c8d9 | 5843 | { |
8dccc7a6 | 5844 | struct todo_item *item; |
616d7740 | 5845 | int i, max = todo_list->nr; |
3546c8d9 | 5846 | |
616d7740 AG |
5847 | if (num > 0 && num < max) |
5848 | max = num; | |
3546c8d9 | 5849 | |
616d7740 | 5850 | for (item = todo_list->items, i = 0; i < max; i++, item++) { |
68e7090f AG |
5851 | char cmd; |
5852 | ||
8dccc7a6 LB |
5853 | /* if the item is not a command write it and continue */ |
5854 | if (item->command >= TODO_COMMENT) { | |
616d7740 | 5855 | strbuf_addf(buf, "%.*s\n", item->arg_len, |
cbef27d6 | 5856 | todo_item_get_arg(todo_list, item)); |
8dccc7a6 | 5857 | continue; |
3546c8d9 | 5858 | } |
8dccc7a6 LB |
5859 | |
5860 | /* add command to the buffer */ | |
68e7090f AG |
5861 | cmd = command_to_char(item->command); |
5862 | if ((flags & TODO_LIST_ABBREVIATE_CMDS) && cmd) | |
5863 | strbuf_addch(buf, cmd); | |
d8ae6c84 | 5864 | else |
616d7740 | 5865 | strbuf_addstr(buf, command_to_string(item->command)); |
8dccc7a6 LB |
5866 | |
5867 | /* add commit id */ | |
5868 | if (item->commit) { | |
313a48ea | 5869 | const char *oid = flags & TODO_LIST_SHORTEN_IDS ? |
8dccc7a6 LB |
5870 | short_commit_name(item->commit) : |
5871 | oid_to_hex(&item->commit->object.oid); | |
5872 | ||
9e3cebd9 CM |
5873 | if (item->command == TODO_FIXUP) { |
5874 | if (item->flags & TODO_EDIT_FIXUP_MSG) | |
5875 | strbuf_addstr(buf, " -c"); | |
5876 | else if (item->flags & TODO_REPLACE_FIXUP_MSG) { | |
5877 | strbuf_addstr(buf, " -C"); | |
5878 | } | |
5879 | } | |
5880 | ||
4c68e7dd JS |
5881 | if (item->command == TODO_MERGE) { |
5882 | if (item->flags & TODO_EDIT_MERGE_MSG) | |
616d7740 | 5883 | strbuf_addstr(buf, " -c"); |
4c68e7dd | 5884 | else |
616d7740 | 5885 | strbuf_addstr(buf, " -C"); |
4c68e7dd JS |
5886 | } |
5887 | ||
616d7740 | 5888 | strbuf_addf(buf, " %s", oid); |
3546c8d9 | 5889 | } |
4c68e7dd | 5890 | |
8dccc7a6 | 5891 | /* add all the rest */ |
c7b4d79c | 5892 | if (!item->arg_len) |
616d7740 | 5893 | strbuf_addch(buf, '\n'); |
c7b4d79c | 5894 | else |
616d7740 | 5895 | strbuf_addf(buf, " %.*s\n", item->arg_len, |
cbef27d6 | 5896 | todo_item_get_arg(todo_list, item)); |
3546c8d9 | 5897 | } |
3546c8d9 | 5898 | } |
94399949 | 5899 | |
616d7740 AG |
5900 | int todo_list_write_to_file(struct repository *r, struct todo_list *todo_list, |
5901 | const char *file, const char *shortrevisions, | |
5902 | const char *shortonto, int num, unsigned flags) | |
94399949 | 5903 | { |
af1fc3ad | 5904 | int res; |
616d7740 | 5905 | struct strbuf buf = STRBUF_INIT; |
94399949 | 5906 | |
616d7740 | 5907 | todo_list_to_strbuf(r, todo_list, &buf, num, flags); |
af1fc3ad | 5908 | if (flags & TODO_LIST_APPEND_TODO_HELP) |
d48e5e21 | 5909 | append_todo_help(count_commands(todo_list), |
af1fc3ad | 5910 | shortrevisions, shortonto, &buf); |
94399949 | 5911 | |
616d7740 | 5912 | res = write_message(buf.buf, buf.len, file, 0); |
cbef27d6 | 5913 | strbuf_release(&buf); |
8315bd20 | 5914 | |
616d7740 | 5915 | return res; |
cbef27d6 | 5916 | } |
94399949 | 5917 | |
cdac2b01 | 5918 | /* skip picking commits whose parents are unchanged */ |
6bfeb7f1 AG |
5919 | static int skip_unnecessary_picks(struct repository *r, |
5920 | struct todo_list *todo_list, | |
5921 | struct object_id *base_oid) | |
cdac2b01 | 5922 | { |
d4ed5d77 | 5923 | struct object_id *parent_oid; |
6bfeb7f1 | 5924 | int i; |
cdac2b01 | 5925 | |
6bfeb7f1 AG |
5926 | for (i = 0; i < todo_list->nr; i++) { |
5927 | struct todo_item *item = todo_list->items + i; | |
cdac2b01 JS |
5928 | |
5929 | if (item->command >= TODO_NOOP) | |
5930 | continue; | |
5931 | if (item->command != TODO_PICK) | |
5932 | break; | |
4a93b899 | 5933 | if (repo_parse_commit(r, item->commit)) { |
cdac2b01 JS |
5934 | return error(_("could not parse commit '%s'"), |
5935 | oid_to_hex(&item->commit->object.oid)); | |
5936 | } | |
5937 | if (!item->commit->parents) | |
5938 | break; /* root commit */ | |
5939 | if (item->commit->parents->next) | |
5940 | break; /* merge commit */ | |
5941 | parent_oid = &item->commit->parents->item->object.oid; | |
6bfeb7f1 | 5942 | if (!oideq(parent_oid, base_oid)) |
cdac2b01 | 5943 | break; |
6bfeb7f1 | 5944 | oidcpy(base_oid, &item->commit->object.oid); |
cdac2b01 JS |
5945 | } |
5946 | if (i > 0) { | |
cdac2b01 JS |
5947 | const char *done_path = rebase_path_done(); |
5948 | ||
6bfeb7f1 | 5949 | if (todo_list_write_to_file(r, todo_list, done_path, NULL, NULL, i, 0)) { |
cdac2b01 | 5950 | error_errno(_("could not write to '%s'"), done_path); |
cdac2b01 JS |
5951 | return -1; |
5952 | } | |
cdac2b01 | 5953 | |
6bfeb7f1 AG |
5954 | MOVE_ARRAY(todo_list->items, todo_list->items + i, todo_list->nr - i); |
5955 | todo_list->nr -= i; | |
5956 | todo_list->current = 0; | |
34065541 | 5957 | todo_list->done_nr += i; |
cdac2b01 | 5958 | |
6bfeb7f1 AG |
5959 | if (is_fixup(peek_command(todo_list, 0))) |
5960 | record_in_rewritten(base_oid, peek_command(todo_list, 0)); | |
cdac2b01 JS |
5961 | } |
5962 | ||
cdac2b01 JS |
5963 | return 0; |
5964 | } | |
c44a4c65 | 5965 | |
900b50c2 DS |
5966 | struct todo_add_branch_context { |
5967 | struct todo_item *items; | |
5968 | size_t items_nr; | |
5969 | size_t items_alloc; | |
5970 | struct strbuf *buf; | |
5971 | struct commit *commit; | |
5972 | struct string_list refs_to_oids; | |
5973 | }; | |
5974 | ||
5975 | static int add_decorations_to_list(const struct commit *commit, | |
5976 | struct todo_add_branch_context *ctx) | |
5977 | { | |
5978 | const struct name_decoration *decoration = get_name_decoration(&commit->object); | |
aa37f3e1 DS |
5979 | const char *head_ref = resolve_ref_unsafe("HEAD", |
5980 | RESOLVE_REF_READING, | |
5981 | NULL, | |
5982 | NULL); | |
900b50c2 DS |
5983 | |
5984 | while (decoration) { | |
5985 | struct todo_item *item; | |
5986 | const char *path; | |
5987 | size_t base_offset = ctx->buf->len; | |
5988 | ||
aa37f3e1 DS |
5989 | /* |
5990 | * If the branch is the current HEAD, then it will be | |
5991 | * updated by the default rebase behavior. | |
5992 | */ | |
5993 | if (head_ref && !strcmp(head_ref, decoration->name)) { | |
5994 | decoration = decoration->next; | |
5995 | continue; | |
5996 | } | |
5997 | ||
900b50c2 DS |
5998 | ALLOC_GROW(ctx->items, |
5999 | ctx->items_nr + 1, | |
6000 | ctx->items_alloc); | |
6001 | item = &ctx->items[ctx->items_nr]; | |
6002 | memset(item, 0, sizeof(*item)); | |
6003 | ||
6004 | /* If the branch is checked out, then leave a comment instead. */ | |
6005 | if ((path = branch_checked_out(decoration->name))) { | |
6006 | item->command = TODO_COMMENT; | |
6007 | strbuf_addf(ctx->buf, "# Ref %s checked out at '%s'\n", | |
6008 | decoration->name, path); | |
6009 | } else { | |
6010 | struct string_list_item *sti; | |
6011 | item->command = TODO_UPDATE_REF; | |
6012 | strbuf_addf(ctx->buf, "%s\n", decoration->name); | |
6013 | ||
6014 | sti = string_list_insert(&ctx->refs_to_oids, | |
6015 | decoration->name); | |
89fc0b53 | 6016 | sti->util = init_update_ref_record(decoration->name); |
900b50c2 DS |
6017 | } |
6018 | ||
6019 | item->offset_in_buf = base_offset; | |
6020 | item->arg_offset = base_offset; | |
6021 | item->arg_len = ctx->buf->len - base_offset; | |
6022 | ctx->items_nr++; | |
6023 | ||
6024 | decoration = decoration->next; | |
6025 | } | |
6026 | ||
6027 | return 0; | |
6028 | } | |
6029 | ||
6030 | /* | |
6031 | * For each 'pick' command, find out if the commit has a decoration in | |
6032 | * refs/heads/. If so, then add a 'label for-update-refs/' command. | |
6033 | */ | |
6034 | static int todo_list_add_update_ref_commands(struct todo_list *todo_list) | |
6035 | { | |
89fc0b53 | 6036 | int i, res; |
900b50c2 DS |
6037 | static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP; |
6038 | static struct string_list decorate_refs_exclude_config = STRING_LIST_INIT_NODUP; | |
6039 | static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP; | |
6040 | struct decoration_filter decoration_filter = { | |
6041 | .include_ref_pattern = &decorate_refs_include, | |
6042 | .exclude_ref_pattern = &decorate_refs_exclude, | |
6043 | .exclude_ref_config_pattern = &decorate_refs_exclude_config, | |
6044 | }; | |
6045 | struct todo_add_branch_context ctx = { | |
6046 | .buf = &todo_list->buf, | |
6047 | .refs_to_oids = STRING_LIST_INIT_DUP, | |
6048 | }; | |
6049 | ||
6050 | ctx.items_alloc = 2 * todo_list->nr + 1; | |
6051 | ALLOC_ARRAY(ctx.items, ctx.items_alloc); | |
6052 | ||
6053 | string_list_append(&decorate_refs_include, "refs/heads/"); | |
6054 | load_ref_decorations(&decoration_filter, 0); | |
6055 | ||
6056 | for (i = 0; i < todo_list->nr; ) { | |
6057 | struct todo_item *item = &todo_list->items[i]; | |
6058 | ||
6059 | /* insert ith item into new list */ | |
6060 | ALLOC_GROW(ctx.items, | |
6061 | ctx.items_nr + 1, | |
6062 | ctx.items_alloc); | |
6063 | ||
6064 | ctx.items[ctx.items_nr++] = todo_list->items[i++]; | |
6065 | ||
6066 | if (item->commit) { | |
6067 | ctx.commit = item->commit; | |
6068 | add_decorations_to_list(item->commit, &ctx); | |
6069 | } | |
6070 | } | |
6071 | ||
89fc0b53 DS |
6072 | res = write_update_refs_state(&ctx.refs_to_oids); |
6073 | ||
900b50c2 | 6074 | string_list_clear(&ctx.refs_to_oids, 1); |
89fc0b53 DS |
6075 | |
6076 | if (res) { | |
6077 | /* we failed, so clean up the new list. */ | |
6078 | free(ctx.items); | |
6079 | return res; | |
6080 | } | |
6081 | ||
900b50c2 DS |
6082 | free(todo_list->items); |
6083 | todo_list->items = ctx.items; | |
6084 | todo_list->nr = ctx.items_nr; | |
6085 | todo_list->alloc = ctx.items_alloc; | |
6086 | ||
6087 | return 0; | |
6088 | } | |
6089 | ||
005af339 | 6090 | int complete_action(struct repository *r, struct replay_opts *opts, unsigned flags, |
b97e1873 | 6091 | const char *shortrevisions, const char *onto_name, |
f3e27a02 | 6092 | struct commit *onto, const struct object_id *orig_head, |
7d3488eb | 6093 | struct string_list *commands, unsigned autosquash, |
900b50c2 | 6094 | unsigned update_refs, |
7d3488eb | 6095 | struct todo_list *todo_list) |
b97e1873 | 6096 | { |
5da69c0d AK |
6097 | char shortonto[GIT_MAX_HEXSZ + 1]; |
6098 | const char *todo_file = rebase_path_todo(); | |
94bcad79 | 6099 | struct todo_list new_todo = TODO_LIST_INIT; |
b6992261 | 6100 | struct strbuf *buf = &todo_list->buf, buf2 = STRBUF_INIT; |
7d3488eb | 6101 | struct object_id oid = onto->object.oid; |
1451d0f6 | 6102 | int res; |
b97e1873 | 6103 | |
4a93b899 | 6104 | repo_find_unique_abbrev_r(r, shortonto, &oid, |
d850b7a5 | 6105 | DEFAULT_ABBREV); |
b97e1873 | 6106 | |
94bcad79 AG |
6107 | if (buf->len == 0) { |
6108 | struct todo_item *item = append_new_todo(todo_list); | |
6109 | item->command = TODO_NOOP; | |
6110 | item->commit = NULL; | |
6111 | item->arg_len = item->arg_offset = item->flags = item->offset_in_buf = 0; | |
6112 | } | |
b97e1873 | 6113 | |
900b50c2 DS |
6114 | if (update_refs && todo_list_add_update_ref_commands(todo_list)) |
6115 | return -1; | |
6116 | ||
94bcad79 | 6117 | if (autosquash && todo_list_rearrange_squash(todo_list)) |
b97e1873 AG |
6118 | return -1; |
6119 | ||
683153a4 | 6120 | if (commands->nr) |
94bcad79 | 6121 | todo_list_add_exec_commands(todo_list, commands); |
b97e1873 | 6122 | |
94bcad79 | 6123 | if (count_commands(todo_list) == 0) { |
be1bb600 | 6124 | apply_autostash(rebase_path_autostash()); |
b97e1873 | 6125 | sequencer_remove_state(opts); |
b97e1873 AG |
6126 | |
6127 | return error(_("nothing to do")); | |
6128 | } | |
6129 | ||
1451d0f6 AG |
6130 | res = edit_todo_list(r, todo_list, &new_todo, shortrevisions, |
6131 | shortonto, flags); | |
6132 | if (res == -1) | |
b97e1873 | 6133 | return -1; |
1451d0f6 | 6134 | else if (res == -2) { |
be1bb600 | 6135 | apply_autostash(rebase_path_autostash()); |
b97e1873 | 6136 | sequencer_remove_state(opts); |
b97e1873 AG |
6137 | |
6138 | return -1; | |
1451d0f6 | 6139 | } else if (res == -3) { |
be1bb600 | 6140 | apply_autostash(rebase_path_autostash()); |
b97e1873 | 6141 | sequencer_remove_state(opts); |
94bcad79 | 6142 | todo_list_release(&new_todo); |
b97e1873 AG |
6143 | |
6144 | return error(_("nothing to do")); | |
5a5445d8 | 6145 | } else if (res == -4) { |
7d3488eb | 6146 | checkout_onto(r, opts, onto_name, &onto->object.oid, orig_head); |
94bcad79 AG |
6147 | todo_list_release(&new_todo); |
6148 | ||
b97e1873 AG |
6149 | return -1; |
6150 | } | |
6151 | ||
b6992261 JS |
6152 | /* Expand the commit IDs */ |
6153 | todo_list_to_strbuf(r, &new_todo, &buf2, -1, 0); | |
6154 | strbuf_swap(&new_todo.buf, &buf2); | |
6155 | strbuf_release(&buf2); | |
170eea97 JS |
6156 | /* Nothing is done yet, and we're reparsing, so let's reset the count */ |
6157 | new_todo.total_nr = 0; | |
b6992261 JS |
6158 | if (todo_list_parse_insn_buffer(r, new_todo.buf.buf, &new_todo) < 0) |
6159 | BUG("invalid todo list after expanding IDs:\n%s", | |
6160 | new_todo.buf.buf); | |
6161 | ||
6bfeb7f1 AG |
6162 | if (opts->allow_ff && skip_unnecessary_picks(r, &new_todo, &oid)) { |
6163 | todo_list_release(&new_todo); | |
b97e1873 | 6164 | return error(_("could not skip unnecessary pick commands")); |
6bfeb7f1 AG |
6165 | } |
6166 | ||
94bcad79 AG |
6167 | if (todo_list_write_to_file(r, &new_todo, todo_file, NULL, NULL, -1, |
6168 | flags & ~(TODO_LIST_SHORTEN_IDS))) { | |
6169 | todo_list_release(&new_todo); | |
6170 | return error_errno(_("could not write '%s'"), todo_file); | |
6171 | } | |
6172 | ||
393adf7a | 6173 | res = -1; |
b97e1873 | 6174 | |
7d3488eb | 6175 | if (checkout_onto(r, opts, onto_name, &oid, orig_head)) |
393adf7a | 6176 | goto cleanup; |
29d51e21 | 6177 | |
005af339 | 6178 | if (require_clean_work_tree(r, "rebase", "", 1, 1)) |
393adf7a | 6179 | goto cleanup; |
b97e1873 | 6180 | |
393adf7a AG |
6181 | todo_list_write_total_nr(&new_todo); |
6182 | res = pick_commits(r, &new_todo, opts); | |
6183 | ||
6184 | cleanup: | |
6185 | todo_list_release(&new_todo); | |
6186 | ||
6187 | return res; | |
b97e1873 AG |
6188 | } |
6189 | ||
c44a4c65 JS |
6190 | struct subject2item_entry { |
6191 | struct hashmap_entry entry; | |
6192 | int i; | |
6193 | char subject[FLEX_ARRAY]; | |
6194 | }; | |
6195 | ||
5cf88fd8 | 6196 | static int subject2item_cmp(const void *fndata UNUSED, |
939af16e EW |
6197 | const struct hashmap_entry *eptr, |
6198 | const struct hashmap_entry *entry_or_key, | |
6199 | const void *key) | |
c44a4c65 | 6200 | { |
939af16e EW |
6201 | const struct subject2item_entry *a, *b; |
6202 | ||
6203 | a = container_of(eptr, const struct subject2item_entry, entry); | |
6204 | b = container_of(entry_or_key, const struct subject2item_entry, entry); | |
6205 | ||
c44a4c65 JS |
6206 | return key ? strcmp(a->subject, key) : strcmp(a->subject, b->subject); |
6207 | } | |
6208 | ||
3cc0287b NTND |
6209 | define_commit_slab(commit_todo_item, struct todo_item *); |
6210 | ||
1f969601 | 6211 | static int skip_fixupish(const char *subject, const char **p) { |
bae5b4ae CM |
6212 | return skip_prefix(subject, "fixup! ", p) || |
6213 | skip_prefix(subject, "amend! ", p) || | |
6214 | skip_prefix(subject, "squash! ", p); | |
6215 | } | |
6216 | ||
c44a4c65 JS |
6217 | /* |
6218 | * Rearrange the todo list that has both "pick commit-id msg" and "pick | |
6219 | * commit-id fixup!/squash! msg" in it so that the latter is put immediately | |
6220 | * after the former, and change "pick" to "fixup"/"squash". | |
6221 | * | |
6222 | * Note that if the config has specified a custom instruction format, each log | |
6223 | * message will have to be retrieved from the commit (as the oneline in the | |
6224 | * script cannot be trusted) in order to normalize the autosquash arrangement. | |
6225 | */ | |
79d7e883 | 6226 | int todo_list_rearrange_squash(struct todo_list *todo_list) |
c44a4c65 | 6227 | { |
c44a4c65 | 6228 | struct hashmap subject2item; |
f2a04904 | 6229 | int rearranged = 0, *next, *tail, i, nr = 0, alloc = 0; |
c44a4c65 | 6230 | char **subjects; |
3cc0287b | 6231 | struct commit_todo_item commit_todo; |
f2a04904 | 6232 | struct todo_item *items = NULL; |
c44a4c65 | 6233 | |
3cc0287b | 6234 | init_commit_todo_item(&commit_todo); |
c44a4c65 JS |
6235 | /* |
6236 | * The hashmap maps onelines to the respective todo list index. | |
6237 | * | |
6238 | * If any items need to be rearranged, the next[i] value will indicate | |
6239 | * which item was moved directly after the i'th. | |
6240 | * | |
6241 | * In that case, last[i] will indicate the index of the latest item to | |
6242 | * be moved to appear after the i'th. | |
6243 | */ | |
939af16e | 6244 | hashmap_init(&subject2item, subject2item_cmp, NULL, todo_list->nr); |
f2a04904 AG |
6245 | ALLOC_ARRAY(next, todo_list->nr); |
6246 | ALLOC_ARRAY(tail, todo_list->nr); | |
6247 | ALLOC_ARRAY(subjects, todo_list->nr); | |
6248 | for (i = 0; i < todo_list->nr; i++) { | |
c44a4c65 | 6249 | struct strbuf buf = STRBUF_INIT; |
f2a04904 | 6250 | struct todo_item *item = todo_list->items + i; |
c44a4c65 JS |
6251 | const char *commit_buffer, *subject, *p; |
6252 | size_t subject_len; | |
6253 | int i2 = -1; | |
6254 | struct subject2item_entry *entry; | |
6255 | ||
6256 | next[i] = tail[i] = -1; | |
2f6b1d13 | 6257 | if (!item->commit || item->command == TODO_DROP) { |
c44a4c65 JS |
6258 | subjects[i] = NULL; |
6259 | continue; | |
6260 | } | |
6261 | ||
6262 | if (is_fixup(item->command)) { | |
3cc0287b | 6263 | clear_commit_todo_item(&commit_todo); |
c44a4c65 JS |
6264 | return error(_("the script was already rearranged.")); |
6265 | } | |
6266 | ||
ecb5091f ÆAB |
6267 | repo_parse_commit(the_repository, item->commit); |
6268 | commit_buffer = repo_logmsg_reencode(the_repository, | |
6269 | item->commit, NULL, | |
6270 | "UTF-8"); | |
c44a4c65 JS |
6271 | find_commit_subject(commit_buffer, &subject); |
6272 | format_subject(&buf, subject, " "); | |
6273 | subject = subjects[i] = strbuf_detach(&buf, &subject_len); | |
ecb5091f ÆAB |
6274 | repo_unuse_commit_buffer(the_repository, item->commit, |
6275 | commit_buffer); | |
1f969601 | 6276 | if (skip_fixupish(subject, &p)) { |
c44a4c65 JS |
6277 | struct commit *commit2; |
6278 | ||
6279 | for (;;) { | |
6280 | while (isspace(*p)) | |
6281 | p++; | |
1f969601 | 6282 | if (!skip_fixupish(p, &p)) |
c44a4c65 JS |
6283 | break; |
6284 | } | |
6285 | ||
f23a4651 EW |
6286 | entry = hashmap_get_entry_from_hash(&subject2item, |
6287 | strhash(p), p, | |
6288 | struct subject2item_entry, | |
6289 | entry); | |
6290 | if (entry) | |
c44a4c65 JS |
6291 | /* found by title */ |
6292 | i2 = entry->i; | |
6293 | else if (!strchr(p, ' ') && | |
6294 | (commit2 = | |
6295 | lookup_commit_reference_by_name(p)) && | |
3cc0287b | 6296 | *commit_todo_item_at(&commit_todo, commit2)) |
c44a4c65 | 6297 | /* found by commit name */ |
3cc0287b | 6298 | i2 = *commit_todo_item_at(&commit_todo, commit2) |
f2a04904 | 6299 | - todo_list->items; |
c44a4c65 JS |
6300 | else { |
6301 | /* copy can be a prefix of the commit subject */ | |
6302 | for (i2 = 0; i2 < i; i2++) | |
6303 | if (subjects[i2] && | |
6304 | starts_with(subjects[i2], p)) | |
6305 | break; | |
6306 | if (i2 == i) | |
6307 | i2 = -1; | |
6308 | } | |
6309 | } | |
6310 | if (i2 >= 0) { | |
6311 | rearranged = 1; | |
bae5b4ae CM |
6312 | if (starts_with(subject, "fixup!")) { |
6313 | todo_list->items[i].command = TODO_FIXUP; | |
6314 | } else if (starts_with(subject, "amend!")) { | |
6315 | todo_list->items[i].command = TODO_FIXUP; | |
6316 | todo_list->items[i].flags = TODO_REPLACE_FIXUP_MSG; | |
6317 | } else { | |
6318 | todo_list->items[i].command = TODO_SQUASH; | |
6319 | } | |
02471e7e JS |
6320 | if (tail[i2] < 0) { |
6321 | next[i] = next[i2]; | |
c44a4c65 | 6322 | next[i2] = i; |
02471e7e JS |
6323 | } else { |
6324 | next[i] = next[tail[i2]]; | |
c44a4c65 | 6325 | next[tail[i2]] = i; |
02471e7e | 6326 | } |
c44a4c65 JS |
6327 | tail[i2] = i; |
6328 | } else if (!hashmap_get_from_hash(&subject2item, | |
6329 | strhash(subject), subject)) { | |
6330 | FLEX_ALLOC_MEM(entry, subject, subject, subject_len); | |
6331 | entry->i = i; | |
d22245a2 EW |
6332 | hashmap_entry_init(&entry->entry, |
6333 | strhash(entry->subject)); | |
26b455f2 | 6334 | hashmap_put(&subject2item, &entry->entry); |
c44a4c65 | 6335 | } |
3e367a5f JA |
6336 | |
6337 | *commit_todo_item_at(&commit_todo, item->commit) = item; | |
c44a4c65 JS |
6338 | } |
6339 | ||
6340 | if (rearranged) { | |
f2a04904 AG |
6341 | for (i = 0; i < todo_list->nr; i++) { |
6342 | enum todo_command command = todo_list->items[i].command; | |
c44a4c65 JS |
6343 | int cur = i; |
6344 | ||
6345 | /* | |
6346 | * Initially, all commands are 'pick's. If it is a | |
6347 | * fixup or a squash now, we have rearranged it. | |
6348 | */ | |
6349 | if (is_fixup(command)) | |
6350 | continue; | |
6351 | ||
6352 | while (cur >= 0) { | |
f2a04904 AG |
6353 | ALLOC_GROW(items, nr + 1, alloc); |
6354 | items[nr++] = todo_list->items[cur]; | |
c44a4c65 JS |
6355 | cur = next[cur]; |
6356 | } | |
6357 | } | |
6358 | ||
f2a04904 AG |
6359 | FREE_AND_NULL(todo_list->items); |
6360 | todo_list->items = items; | |
6361 | todo_list->nr = nr; | |
6362 | todo_list->alloc = alloc; | |
c44a4c65 JS |
6363 | } |
6364 | ||
6365 | free(next); | |
6366 | free(tail); | |
f2a04904 | 6367 | for (i = 0; i < todo_list->nr; i++) |
c44a4c65 JS |
6368 | free(subjects[i]); |
6369 | free(subjects); | |
6da1a258 | 6370 | hashmap_clear_and_free(&subject2item, struct subject2item_entry, entry); |
c44a4c65 | 6371 | |
3cc0287b | 6372 | clear_commit_todo_item(&commit_todo); |
f2a04904 AG |
6373 | |
6374 | return 0; | |
c44a4c65 | 6375 | } |
901ba7b1 PW |
6376 | |
6377 | int sequencer_determine_whence(struct repository *r, enum commit_whence *whence) | |
6378 | { | |
c8e4159e | 6379 | if (refs_ref_exists(get_main_ref_store(r), "CHERRY_PICK_HEAD")) { |
430b75f7 PW |
6380 | struct object_id cherry_pick_head, rebase_head; |
6381 | ||
6382 | if (file_exists(git_path_seq_dir())) | |
6383 | *whence = FROM_CHERRY_PICK_MULTI; | |
6384 | if (file_exists(rebase_path()) && | |
4a93b899 ÆAB |
6385 | !repo_get_oid(r, "REBASE_HEAD", &rebase_head) && |
6386 | !repo_get_oid(r, "CHERRY_PICK_HEAD", &cherry_pick_head) && | |
430b75f7 PW |
6387 | oideq(&rebase_head, &cherry_pick_head)) |
6388 | *whence = FROM_REBASE_PICK; | |
6389 | else | |
6390 | *whence = FROM_CHERRY_PICK_SINGLE; | |
6391 | ||
901ba7b1 PW |
6392 | return 1; |
6393 | } | |
6394 | ||
6395 | return 0; | |
6396 | } | |
aa7f2fd1 DS |
6397 | |
6398 | int sequencer_get_update_refs_state(const char *wt_dir, | |
6399 | struct string_list *refs) | |
6400 | { | |
6401 | int result = 0; | |
6402 | FILE *fp = NULL; | |
6403 | struct strbuf ref = STRBUF_INIT; | |
6404 | struct strbuf hash = STRBUF_INIT; | |
6405 | struct update_ref_record *rec = NULL; | |
6406 | ||
6407 | char *path = rebase_path_update_refs(wt_dir); | |
6408 | ||
6409 | fp = fopen(path, "r"); | |
6410 | if (!fp) | |
6411 | goto cleanup; | |
6412 | ||
6413 | while (strbuf_getline(&ref, fp) != EOF) { | |
6414 | struct string_list_item *item; | |
6415 | ||
6416 | CALLOC_ARRAY(rec, 1); | |
6417 | ||
6418 | if (strbuf_getline(&hash, fp) == EOF || | |
6419 | get_oid_hex(hash.buf, &rec->before)) { | |
6420 | warning(_("update-refs file at '%s' is invalid"), | |
6421 | path); | |
6422 | result = -1; | |
6423 | goto cleanup; | |
6424 | } | |
6425 | ||
6426 | if (strbuf_getline(&hash, fp) == EOF || | |
6427 | get_oid_hex(hash.buf, &rec->after)) { | |
6428 | warning(_("update-refs file at '%s' is invalid"), | |
6429 | path); | |
6430 | result = -1; | |
6431 | goto cleanup; | |
6432 | } | |
6433 | ||
6434 | item = string_list_insert(refs, ref.buf); | |
6435 | item->util = rec; | |
6436 | rec = NULL; | |
6437 | } | |
6438 | ||
6439 | cleanup: | |
6440 | if (fp) | |
6441 | fclose(fp); | |
6442 | free(path); | |
6443 | free(rec); | |
6444 | strbuf_release(&ref); | |
6445 | strbuf_release(&hash); | |
6446 | return result; | |
6447 | } |