Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 1 | #include "cache.h" |
Michael Haggerty | 697cc8e | 2014-10-01 12:28:42 +0200 | [diff] [blame] | 2 | #include "lockfile.h" |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 3 | #include "sequencer.h" |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 4 | #include "dir.h" |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 5 | #include "object.h" |
| 6 | #include "commit.h" |
| 7 | #include "tag.h" |
| 8 | #include "run-command.h" |
| 9 | #include "exec_cmd.h" |
| 10 | #include "utf8.h" |
| 11 | #include "cache-tree.h" |
| 12 | #include "diff.h" |
| 13 | #include "revision.h" |
| 14 | #include "rerere.h" |
| 15 | #include "merge-recursive.h" |
| 16 | #include "refs.h" |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 17 | #include "argv-array.h" |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 18 | #include "quote.h" |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 19 | #include "trailer.h" |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 20 | #include "log-tree.h" |
Johannes Schindelin | 311af52 | 2017-01-02 16:26:47 +0100 | [diff] [blame] | 21 | #include "wt-status.h" |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 22 | |
| 23 | #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION" |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 24 | |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 25 | const char sign_off_header[] = "Signed-off-by: "; |
Brandon Casey | cd650a4 | 2013-02-12 02:17:32 -0800 | [diff] [blame] | 26 | static const char cherry_picked_prefix[] = "(cherry picked from commit "; |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 27 | |
Johannes Schindelin | 8a2a0f5 | 2016-10-14 15:17:12 +0200 | [diff] [blame] | 28 | GIT_PATH_FUNC(git_path_seq_dir, "sequencer") |
| 29 | |
| 30 | static GIT_PATH_FUNC(git_path_todo_file, "sequencer/todo") |
| 31 | static GIT_PATH_FUNC(git_path_opts_file, "sequencer/opts") |
| 32 | static GIT_PATH_FUNC(git_path_head_file, "sequencer/head") |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 33 | static GIT_PATH_FUNC(git_path_abort_safety_file, "sequencer/abort-safety") |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 34 | |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 35 | static GIT_PATH_FUNC(rebase_path, "rebase-merge") |
| 36 | /* |
| 37 | * The file containing rebase commands, comments, and empty lines. |
| 38 | * This file is created by "git rebase -i" then edited by the user. As |
| 39 | * the lines are processed, they are removed from the front of this |
| 40 | * file and written to the tail of 'done'. |
| 41 | */ |
| 42 | static GIT_PATH_FUNC(rebase_path_todo, "rebase-merge/git-rebase-todo") |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 43 | /* |
Johannes Schindelin | 1df6df0 | 2017-01-02 16:27:00 +0100 | [diff] [blame] | 44 | * The rebase command lines that have already been processed. A line |
| 45 | * is moved here when it is first handled, before any associated user |
| 46 | * actions. |
| 47 | */ |
| 48 | static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done") |
| 49 | /* |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 50 | * The file to keep track of how many commands were already processed (e.g. |
| 51 | * for the prompt). |
| 52 | */ |
| 53 | static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum"); |
| 54 | /* |
| 55 | * The file to keep track of how many commands are to be processed in total |
| 56 | * (e.g. for the prompt). |
| 57 | */ |
| 58 | static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end"); |
| 59 | /* |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 60 | * The commit message that is planned to be used for any changes that |
| 61 | * need to be committed following a user interaction. |
| 62 | */ |
| 63 | static GIT_PATH_FUNC(rebase_path_message, "rebase-merge/message") |
| 64 | /* |
| 65 | * The file into which is accumulated the suggested commit message for |
| 66 | * squash/fixup commands. When the first of a series of squash/fixups |
| 67 | * is seen, the file is created and the commit message from the |
| 68 | * previous commit and from the first squash/fixup commit are written |
| 69 | * to it. The commit message for each subsequent squash/fixup commit |
| 70 | * is appended to the file as it is processed. |
| 71 | * |
| 72 | * The first line of the file is of the form |
| 73 | * # This is a combination of $count commits. |
| 74 | * where $count is the number of commits whose messages have been |
| 75 | * written to the file so far (including the initial "pick" commit). |
| 76 | * Each time that a commit message is processed, this line is read and |
| 77 | * updated. It is deleted just before the combined commit is made. |
| 78 | */ |
| 79 | static GIT_PATH_FUNC(rebase_path_squash_msg, "rebase-merge/message-squash") |
| 80 | /* |
| 81 | * If the current series of squash/fixups has not yet included a squash |
| 82 | * command, then this file exists and holds the commit message of the |
| 83 | * original "pick" commit. (If the series ends without a "squash" |
| 84 | * command, then this can be used as the commit message of the combined |
| 85 | * commit without opening the editor.) |
| 86 | */ |
| 87 | static GIT_PATH_FUNC(rebase_path_fixup_msg, "rebase-merge/message-fixup") |
| 88 | /* |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 89 | * A script to set the GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, and |
| 90 | * GIT_AUTHOR_DATE that will be used for the commit that is currently |
| 91 | * being rebased. |
| 92 | */ |
| 93 | static GIT_PATH_FUNC(rebase_path_author_script, "rebase-merge/author-script") |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 94 | /* |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 95 | * When an "edit" rebase command is being processed, the SHA1 of the |
| 96 | * commit to be edited is recorded in this file. When "git rebase |
| 97 | * --continue" is executed, if there are any staged changes then they |
| 98 | * will be amended to the HEAD commit, but only provided the HEAD |
| 99 | * commit is still the commit to be edited. When any other rebase |
| 100 | * command is processed, this file is deleted. |
| 101 | */ |
| 102 | static GIT_PATH_FUNC(rebase_path_amend, "rebase-merge/amend") |
| 103 | /* |
| 104 | * When we stop at a given patch via the "edit" command, this file contains |
| 105 | * the abbreviated commit name of the corresponding patch. |
| 106 | */ |
| 107 | static GIT_PATH_FUNC(rebase_path_stopped_sha, "rebase-merge/stopped-sha") |
| 108 | /* |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 109 | * For the post-rewrite hook, we make a list of rewritten commits and |
| 110 | * their new sha1s. The rewritten-pending list keeps the sha1s of |
| 111 | * commits that have been processed, but not committed yet, |
| 112 | * e.g. because they are waiting for a 'squash' command. |
| 113 | */ |
| 114 | static GIT_PATH_FUNC(rebase_path_rewritten_list, "rebase-merge/rewritten-list") |
| 115 | static GIT_PATH_FUNC(rebase_path_rewritten_pending, |
| 116 | "rebase-merge/rewritten-pending") |
| 117 | /* |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 118 | * The following files are written by git-rebase just after parsing the |
| 119 | * command-line (and are only consumed, not modified, by the sequencer). |
| 120 | */ |
| 121 | static GIT_PATH_FUNC(rebase_path_gpg_sign_opt, "rebase-merge/gpg_sign_opt") |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 122 | static GIT_PATH_FUNC(rebase_path_orig_head, "rebase-merge/orig-head") |
| 123 | static GIT_PATH_FUNC(rebase_path_verbose, "rebase-merge/verbose") |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 124 | static GIT_PATH_FUNC(rebase_path_head_name, "rebase-merge/head-name") |
| 125 | static GIT_PATH_FUNC(rebase_path_onto, "rebase-merge/onto") |
Johannes Schindelin | 796c797 | 2017-01-02 16:28:27 +0100 | [diff] [blame] | 126 | static GIT_PATH_FUNC(rebase_path_autostash, "rebase-merge/autostash") |
Johannes Schindelin | ca6c6b4 | 2017-01-02 16:28:30 +0100 | [diff] [blame] | 127 | static GIT_PATH_FUNC(rebase_path_strategy, "rebase-merge/strategy") |
| 128 | static GIT_PATH_FUNC(rebase_path_strategy_opts, "rebase-merge/strategy_opts") |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 129 | |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 130 | static inline int is_rebase_i(const struct replay_opts *opts) |
| 131 | { |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 132 | return opts->action == REPLAY_INTERACTIVE_REBASE; |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 133 | } |
| 134 | |
Johannes Schindelin | 285abf5 | 2016-10-14 15:17:20 +0200 | [diff] [blame] | 135 | static const char *get_dir(const struct replay_opts *opts) |
| 136 | { |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 137 | if (is_rebase_i(opts)) |
| 138 | return rebase_path(); |
Johannes Schindelin | 285abf5 | 2016-10-14 15:17:20 +0200 | [diff] [blame] | 139 | return git_path_seq_dir(); |
| 140 | } |
| 141 | |
Johannes Schindelin | c024650 | 2016-10-21 14:24:32 +0200 | [diff] [blame] | 142 | static const char *get_todo_path(const struct replay_opts *opts) |
| 143 | { |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 144 | if (is_rebase_i(opts)) |
| 145 | return rebase_path_todo(); |
Johannes Schindelin | c024650 | 2016-10-21 14:24:32 +0200 | [diff] [blame] | 146 | return git_path_todo_file(); |
| 147 | } |
| 148 | |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 149 | /* |
| 150 | * Returns 0 for non-conforming footer |
| 151 | * Returns 1 for conforming footer |
| 152 | * Returns 2 when sob exists within conforming footer |
| 153 | * Returns 3 when sob exists within conforming footer as last entry |
| 154 | */ |
| 155 | static int has_conforming_footer(struct strbuf *sb, struct strbuf *sob, |
| 156 | int ignore_footer) |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 157 | { |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 158 | struct trailer_info info; |
| 159 | int i; |
| 160 | int found_sob = 0, found_sob_last = 0; |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 161 | |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 162 | trailer_info_get(&info, sb->buf); |
| 163 | |
| 164 | if (info.trailer_start == info.trailer_end) |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 165 | return 0; |
| 166 | |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 167 | for (i = 0; i < info.trailer_nr; i++) |
| 168 | if (sob && !strncmp(info.trailers[i], sob->buf, sob->len)) { |
| 169 | found_sob = 1; |
| 170 | if (i == info.trailer_nr - 1) |
| 171 | found_sob_last = 1; |
| 172 | } |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 173 | |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 174 | trailer_info_release(&info); |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 175 | |
Jonathan Tan | 967dfd4 | 2016-11-02 10:29:20 -0700 | [diff] [blame] | 176 | if (found_sob_last) |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 177 | return 3; |
| 178 | if (found_sob) |
| 179 | return 2; |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 180 | return 1; |
| 181 | } |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 182 | |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 183 | static const char *gpg_sign_opt_quoted(struct replay_opts *opts) |
| 184 | { |
| 185 | static struct strbuf buf = STRBUF_INIT; |
| 186 | |
| 187 | strbuf_reset(&buf); |
| 188 | if (opts->gpg_sign) |
| 189 | sq_quotef(&buf, "-S%s", opts->gpg_sign); |
| 190 | return buf.buf; |
| 191 | } |
| 192 | |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 193 | int sequencer_remove_state(struct replay_opts *opts) |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 194 | { |
Johannes Schindelin | 285abf5 | 2016-10-14 15:17:20 +0200 | [diff] [blame] | 195 | struct strbuf dir = STRBUF_INIT; |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 196 | int i; |
| 197 | |
| 198 | free(opts->gpg_sign); |
| 199 | free(opts->strategy); |
| 200 | for (i = 0; i < opts->xopts_nr; i++) |
| 201 | free(opts->xopts[i]); |
| 202 | free(opts->xopts); |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 203 | |
Johannes Schindelin | 285abf5 | 2016-10-14 15:17:20 +0200 | [diff] [blame] | 204 | strbuf_addf(&dir, "%s", get_dir(opts)); |
| 205 | remove_dir_recursively(&dir, 0); |
| 206 | strbuf_release(&dir); |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 207 | |
| 208 | return 0; |
Ramkumar Ramachandra | 26ae337 | 2011-08-04 16:09:11 +0530 | [diff] [blame] | 209 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 210 | |
| 211 | static const char *action_name(const struct replay_opts *opts) |
| 212 | { |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 213 | switch (opts->action) { |
| 214 | case REPLAY_REVERT: |
| 215 | return N_("revert"); |
| 216 | case REPLAY_PICK: |
| 217 | return N_("cherry-pick"); |
| 218 | case REPLAY_INTERACTIVE_REBASE: |
| 219 | return N_("rebase -i"); |
| 220 | } |
| 221 | die(_("Unknown action: %d"), opts->action); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 222 | } |
| 223 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 224 | struct commit_message { |
| 225 | char *parent_label; |
Jeff King | 7b35eaf | 2016-02-22 17:44:57 -0500 | [diff] [blame] | 226 | char *label; |
| 227 | char *subject; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 228 | const char *message; |
| 229 | }; |
| 230 | |
Johannes Schindelin | 3975596 | 2016-10-21 14:24:37 +0200 | [diff] [blame] | 231 | static const char *short_commit_name(struct commit *commit) |
| 232 | { |
| 233 | return find_unique_abbrev(commit->object.oid.hash, DEFAULT_ABBREV); |
| 234 | } |
| 235 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 236 | static int get_message(struct commit *commit, struct commit_message *out) |
| 237 | { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 238 | const char *abbrev, *subject; |
Jeff King | 7b35eaf | 2016-02-22 17:44:57 -0500 | [diff] [blame] | 239 | int subject_len; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 240 | |
Jeff King | 7b35eaf | 2016-02-22 17:44:57 -0500 | [diff] [blame] | 241 | out->message = logmsg_reencode(commit, NULL, get_commit_output_encoding()); |
Johannes Schindelin | 3975596 | 2016-10-21 14:24:37 +0200 | [diff] [blame] | 242 | abbrev = short_commit_name(commit); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 243 | |
| 244 | subject_len = find_commit_subject(out->message, &subject); |
| 245 | |
Jeff King | 7b35eaf | 2016-02-22 17:44:57 -0500 | [diff] [blame] | 246 | out->subject = xmemdupz(subject, subject_len); |
| 247 | out->label = xstrfmt("%s... %s", abbrev, out->subject); |
| 248 | out->parent_label = xstrfmt("parent of %s", out->label); |
| 249 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 250 | return 0; |
| 251 | } |
| 252 | |
Jeff King | d74a4e5 | 2014-06-10 17:39:35 -0400 | [diff] [blame] | 253 | static void free_message(struct commit *commit, struct commit_message *msg) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 254 | { |
| 255 | free(msg->parent_label); |
Jeff King | 7b35eaf | 2016-02-22 17:44:57 -0500 | [diff] [blame] | 256 | free(msg->label); |
| 257 | free(msg->subject); |
Jeff King | b66103c | 2014-06-10 17:41:39 -0400 | [diff] [blame] | 258 | unuse_commit_buffer(commit, msg->message); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 259 | } |
| 260 | |
Phil Hord | ed727b1 | 2012-02-21 19:44:17 -0500 | [diff] [blame] | 261 | static void print_advice(int show_hint, struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 262 | { |
| 263 | char *msg = getenv("GIT_CHERRY_PICK_HELP"); |
| 264 | |
| 265 | if (msg) { |
| 266 | fprintf(stderr, "%s\n", msg); |
| 267 | /* |
Stefano Lattarini | 41ccfdd | 2013-04-12 00:36:10 +0200 | [diff] [blame] | 268 | * A conflict has occurred but the porcelain |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 269 | * (typically rebase --interactive) wants to take care |
| 270 | * of the commit itself so remove CHERRY_PICK_HEAD |
| 271 | */ |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 272 | unlink(git_path_cherry_pick_head()); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 273 | return; |
| 274 | } |
| 275 | |
Phil Hord | ed727b1 | 2012-02-21 19:44:17 -0500 | [diff] [blame] | 276 | if (show_hint) { |
| 277 | if (opts->no_commit) |
| 278 | advise(_("after resolving the conflicts, mark the corrected paths\n" |
| 279 | "with 'git add <paths>' or 'git rm <paths>'")); |
| 280 | else |
| 281 | advise(_("after resolving the conflicts, mark the corrected paths\n" |
| 282 | "with 'git add <paths>' or 'git rm <paths>'\n" |
| 283 | "and commit the result with 'git commit'")); |
| 284 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 285 | } |
| 286 | |
Johannes Schindelin | f56fffe | 2016-10-21 14:26:09 +0200 | [diff] [blame] | 287 | static int write_message(const void *buf, size_t len, const char *filename, |
| 288 | int append_eol) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 289 | { |
| 290 | static struct lock_file msg_file; |
| 291 | |
Johannes Schindelin | 4ef3d8f | 2016-09-09 16:37:05 +0200 | [diff] [blame] | 292 | int msg_fd = hold_lock_file_for_update(&msg_file, filename, 0); |
| 293 | if (msg_fd < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 294 | return error_errno(_("could not lock '%s'"), filename); |
Johannes Schindelin | 7587149 | 2016-10-21 14:26:05 +0200 | [diff] [blame] | 295 | if (write_in_full(msg_fd, buf, len) < 0) { |
Johannes Schindelin | 4f66c83 | 2016-10-21 14:26:00 +0200 | [diff] [blame] | 296 | rollback_lock_file(&msg_file); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 297 | return error_errno(_("could not write to '%s'"), filename); |
Johannes Schindelin | 4f66c83 | 2016-10-21 14:26:00 +0200 | [diff] [blame] | 298 | } |
Johannes Schindelin | f56fffe | 2016-10-21 14:26:09 +0200 | [diff] [blame] | 299 | if (append_eol && write(msg_fd, "\n", 1) < 0) { |
| 300 | rollback_lock_file(&msg_file); |
Jiang Xin | 3587180 | 2016-11-20 20:26:17 +0800 | [diff] [blame] | 301 | return error_errno(_("could not write eol to '%s'"), filename); |
Johannes Schindelin | f56fffe | 2016-10-21 14:26:09 +0200 | [diff] [blame] | 302 | } |
Johannes Schindelin | 4f66c83 | 2016-10-21 14:26:00 +0200 | [diff] [blame] | 303 | if (commit_lock_file(&msg_file) < 0) { |
| 304 | rollback_lock_file(&msg_file); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 305 | return error(_("failed to finalize '%s'."), filename); |
Johannes Schindelin | 4f66c83 | 2016-10-21 14:26:00 +0200 | [diff] [blame] | 306 | } |
Johannes Schindelin | 4ef3d8f | 2016-09-09 16:37:05 +0200 | [diff] [blame] | 307 | |
| 308 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 309 | } |
| 310 | |
Johannes Schindelin | 1dfc84e | 2016-10-21 14:25:08 +0200 | [diff] [blame] | 311 | /* |
| 312 | * Reads a file that was presumably written by a shell script, i.e. with an |
| 313 | * end-of-line marker that needs to be stripped. |
| 314 | * |
| 315 | * Note that only the last end-of-line marker is stripped, consistent with the |
| 316 | * behavior of "$(cat path)" in a shell script. |
| 317 | * |
| 318 | * Returns 1 if the file was read, 0 if it could not be read or does not exist. |
| 319 | */ |
| 320 | static int read_oneliner(struct strbuf *buf, |
| 321 | const char *path, int skip_if_empty) |
| 322 | { |
| 323 | int orig_len = buf->len; |
| 324 | |
| 325 | if (!file_exists(path)) |
| 326 | return 0; |
| 327 | |
| 328 | if (strbuf_read_file(buf, path, 0) < 0) { |
| 329 | warning_errno(_("could not read '%s'"), path); |
| 330 | return 0; |
| 331 | } |
| 332 | |
| 333 | if (buf->len > orig_len && buf->buf[buf->len - 1] == '\n') { |
| 334 | if (--buf->len > orig_len && buf->buf[buf->len - 1] == '\r') |
| 335 | --buf->len; |
| 336 | buf->buf[buf->len] = '\0'; |
| 337 | } |
| 338 | |
| 339 | if (skip_if_empty && buf->len == orig_len) |
| 340 | return 0; |
| 341 | |
| 342 | return 1; |
| 343 | } |
| 344 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 345 | static struct tree *empty_tree(void) |
| 346 | { |
Jeff King | cba595b | 2012-03-22 14:53:24 -0400 | [diff] [blame] | 347 | return lookup_tree(EMPTY_TREE_SHA1_BIN); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | static int error_dirty_index(struct replay_opts *opts) |
| 351 | { |
| 352 | if (read_cache_unmerged()) |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 353 | return error_resolve_conflict(_(action_name(opts))); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 354 | |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 355 | error(_("your local changes would be overwritten by %s."), |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 356 | _(action_name(opts))); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 357 | |
| 358 | if (advice_commit_before_merge) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 359 | advise(_("commit your changes or stash them to proceed.")); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 360 | return -1; |
| 361 | } |
| 362 | |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 363 | static void update_abort_safety_file(void) |
| 364 | { |
| 365 | struct object_id head; |
| 366 | |
| 367 | /* Do nothing on a single-pick */ |
| 368 | if (!file_exists(git_path_seq_dir())) |
| 369 | return; |
| 370 | |
| 371 | if (!get_oid("HEAD", &head)) |
| 372 | write_file(git_path_abort_safety_file(), "%s", oid_to_hex(&head)); |
| 373 | else |
| 374 | write_file(git_path_abort_safety_file(), "%s", ""); |
| 375 | } |
| 376 | |
Martin von Zweigbergk | 334ae39 | 2012-12-21 11:10:11 -0800 | [diff] [blame] | 377 | static int fast_forward_to(const unsigned char *to, const unsigned char *from, |
Ramkumar Ramachandra | eb4be1c | 2013-06-19 13:07:09 +0530 | [diff] [blame] | 378 | int unborn, struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 379 | { |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 380 | struct ref_transaction *transaction; |
Ramkumar Ramachandra | eb4be1c | 2013-06-19 13:07:09 +0530 | [diff] [blame] | 381 | struct strbuf sb = STRBUF_INIT; |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 382 | struct strbuf err = STRBUF_INIT; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 383 | |
| 384 | read_cache(); |
Nguyễn Thái Ngọc Duy | db699a8 | 2012-10-26 22:53:49 +0700 | [diff] [blame] | 385 | if (checkout_fast_forward(from, to, 1)) |
Johannes Schindelin | 0e408fc | 2016-09-09 16:37:55 +0200 | [diff] [blame] | 386 | return -1; /* the callee should have complained already */ |
Ronnie Sahlberg | 651ab9f | 2014-04-16 11:56:52 -0700 | [diff] [blame] | 387 | |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 388 | strbuf_addf(&sb, _("%s: fast-forward"), _(action_name(opts))); |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 389 | |
| 390 | transaction = ref_transaction_begin(&err); |
| 391 | if (!transaction || |
| 392 | ref_transaction_update(transaction, "HEAD", |
| 393 | to, unborn ? null_sha1 : from, |
Michael Haggerty | 1d147bd | 2015-02-17 18:00:15 +0100 | [diff] [blame] | 394 | 0, sb.buf, &err) || |
Ronnie Sahlberg | db7516a | 2014-04-30 12:22:42 -0700 | [diff] [blame] | 395 | ref_transaction_commit(transaction, &err)) { |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 396 | ref_transaction_free(transaction); |
| 397 | error("%s", err.buf); |
| 398 | strbuf_release(&sb); |
| 399 | strbuf_release(&err); |
| 400 | return -1; |
| 401 | } |
Ronnie Sahlberg | 651ab9f | 2014-04-16 11:56:52 -0700 | [diff] [blame] | 402 | |
Ramkumar Ramachandra | eb4be1c | 2013-06-19 13:07:09 +0530 | [diff] [blame] | 403 | strbuf_release(&sb); |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 404 | strbuf_release(&err); |
| 405 | ref_transaction_free(transaction); |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 406 | update_abort_safety_file(); |
Ronnie Sahlberg | d668d16 | 2014-04-16 15:37:45 -0700 | [diff] [blame] | 407 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 408 | } |
| 409 | |
Junio C Hamano | 75c961b | 2014-10-24 11:34:59 -0700 | [diff] [blame] | 410 | void append_conflicts_hint(struct strbuf *msgbuf) |
| 411 | { |
| 412 | int i; |
| 413 | |
Junio C Hamano | 261f315 | 2014-10-28 13:04:38 -0700 | [diff] [blame] | 414 | strbuf_addch(msgbuf, '\n'); |
| 415 | strbuf_commented_addf(msgbuf, "Conflicts:\n"); |
Junio C Hamano | 75c961b | 2014-10-24 11:34:59 -0700 | [diff] [blame] | 416 | for (i = 0; i < active_nr;) { |
| 417 | const struct cache_entry *ce = active_cache[i++]; |
| 418 | if (ce_stage(ce)) { |
Junio C Hamano | 261f315 | 2014-10-28 13:04:38 -0700 | [diff] [blame] | 419 | strbuf_commented_addf(msgbuf, "\t%s\n", ce->name); |
Junio C Hamano | 75c961b | 2014-10-24 11:34:59 -0700 | [diff] [blame] | 420 | while (i < active_nr && !strcmp(ce->name, |
| 421 | active_cache[i]->name)) |
| 422 | i++; |
| 423 | } |
| 424 | } |
| 425 | } |
| 426 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 427 | static int do_recursive_merge(struct commit *base, struct commit *next, |
| 428 | const char *base_label, const char *next_label, |
| 429 | unsigned char *head, struct strbuf *msgbuf, |
| 430 | struct replay_opts *opts) |
| 431 | { |
| 432 | struct merge_options o; |
| 433 | struct tree *result, *next_tree, *base_tree, *head_tree; |
Nguyễn Thái Ngọc Duy | 03b8664 | 2014-06-13 19:19:23 +0700 | [diff] [blame] | 434 | int clean; |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 435 | char **xopt; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 436 | static struct lock_file index_lock; |
| 437 | |
Junio C Hamano | b3e83cc | 2016-12-07 10:33:54 -0800 | [diff] [blame] | 438 | hold_locked_index(&index_lock, LOCK_DIE_ON_ERROR); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 439 | |
| 440 | read_cache(); |
| 441 | |
| 442 | init_merge_options(&o); |
| 443 | o.ancestor = base ? base_label : "(empty tree)"; |
| 444 | o.branch1 = "HEAD"; |
| 445 | o.branch2 = next ? next_label : "(empty tree)"; |
Johannes Schindelin | 62fdb65 | 2017-01-02 16:35:39 +0100 | [diff] [blame] | 446 | if (is_rebase_i(opts)) |
| 447 | o.buffer_output = 2; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 448 | |
| 449 | head_tree = parse_tree_indirect(head); |
| 450 | next_tree = next ? next->tree : empty_tree(); |
| 451 | base_tree = base ? base->tree : empty_tree(); |
| 452 | |
| 453 | for (xopt = opts->xopts; xopt != opts->xopts + opts->xopts_nr; xopt++) |
| 454 | parse_merge_opt(&o, *xopt); |
| 455 | |
| 456 | clean = merge_trees(&o, |
| 457 | head_tree, |
| 458 | next_tree, base_tree, &result); |
Johannes Schindelin | 62fdb65 | 2017-01-02 16:35:39 +0100 | [diff] [blame] | 459 | if (is_rebase_i(opts) && clean <= 0) |
| 460 | fputs(o.obuf.buf, stdout); |
Johannes Schindelin | 548009c | 2016-08-01 13:44:53 +0200 | [diff] [blame] | 461 | strbuf_release(&o.obuf); |
Johannes Schindelin | f241ff0 | 2016-07-26 18:06:02 +0200 | [diff] [blame] | 462 | if (clean < 0) |
| 463 | return clean; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 464 | |
| 465 | if (active_cache_changed && |
Nguyễn Thái Ngọc Duy | 03b8664 | 2014-06-13 19:19:23 +0700 | [diff] [blame] | 466 | write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 467 | /* TRANSLATORS: %s will be "revert", "cherry-pick" or |
| 468 | * "rebase -i". |
| 469 | */ |
Johannes Schindelin | c527b55 | 2016-09-09 16:37:10 +0200 | [diff] [blame] | 470 | return error(_("%s: Unable to write new index file"), |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 471 | _(action_name(opts))); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 472 | rollback_lock_file(&index_lock); |
| 473 | |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 474 | if (opts->signoff) |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 475 | append_signoff(msgbuf, 0, 0); |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 476 | |
Junio C Hamano | 75c961b | 2014-10-24 11:34:59 -0700 | [diff] [blame] | 477 | if (!clean) |
| 478 | append_conflicts_hint(msgbuf); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 479 | |
| 480 | return !clean; |
| 481 | } |
| 482 | |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 483 | static int is_index_unchanged(void) |
| 484 | { |
| 485 | unsigned char head_sha1[20]; |
| 486 | struct commit *head_commit; |
| 487 | |
Ronnie Sahlberg | 7695d11 | 2014-07-15 12:59:36 -0700 | [diff] [blame] | 488 | if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, head_sha1, NULL)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 489 | return error(_("could not resolve HEAD commit\n")); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 490 | |
| 491 | head_commit = lookup_commit(head_sha1); |
Neil Horman | 4b58006 | 2012-05-03 08:10:22 -0400 | [diff] [blame] | 492 | |
| 493 | /* |
| 494 | * If head_commit is NULL, check_commit, called from |
| 495 | * lookup_commit, would have indicated that head_commit is not |
| 496 | * a commit object already. parse_commit() will return failure |
| 497 | * without further complaints in such a case. Otherwise, if |
| 498 | * the commit is invalid, parse_commit() will complain. So |
| 499 | * there is nothing for us to say here. Just return failure. |
| 500 | */ |
| 501 | if (parse_commit(head_commit)) |
| 502 | return -1; |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 503 | |
| 504 | if (!active_cache_tree) |
| 505 | active_cache_tree = cache_tree(); |
| 506 | |
| 507 | if (!cache_tree_fully_valid(active_cache_tree)) |
Nguyễn Thái Ngọc Duy | d0cfc3e | 2014-06-13 19:19:32 +0700 | [diff] [blame] | 508 | if (cache_tree_update(&the_index, 0)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 509 | return error(_("unable to update cache tree\n")); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 510 | |
brian m. carlson | ed1c997 | 2015-11-10 02:22:29 +0000 | [diff] [blame] | 511 | return !hashcmp(active_cache_tree->sha1, head_commit->tree->object.oid.hash); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 512 | } |
| 513 | |
Johannes Schindelin | 0473f28 | 2017-01-02 16:27:18 +0100 | [diff] [blame] | 514 | static int write_author_script(const char *message) |
| 515 | { |
| 516 | struct strbuf buf = STRBUF_INIT; |
| 517 | const char *eol; |
| 518 | int res; |
| 519 | |
| 520 | for (;;) |
| 521 | if (!*message || starts_with(message, "\n")) { |
| 522 | missing_author: |
| 523 | /* Missing 'author' line? */ |
| 524 | unlink(rebase_path_author_script()); |
| 525 | return 0; |
| 526 | } else if (skip_prefix(message, "author ", &message)) |
| 527 | break; |
| 528 | else if ((eol = strchr(message, '\n'))) |
| 529 | message = eol + 1; |
| 530 | else |
| 531 | goto missing_author; |
| 532 | |
| 533 | strbuf_addstr(&buf, "GIT_AUTHOR_NAME='"); |
| 534 | while (*message && *message != '\n' && *message != '\r') |
| 535 | if (skip_prefix(message, " <", &message)) |
| 536 | break; |
| 537 | else if (*message != '\'') |
| 538 | strbuf_addch(&buf, *(message++)); |
| 539 | else |
| 540 | strbuf_addf(&buf, "'\\\\%c'", *(message++)); |
| 541 | strbuf_addstr(&buf, "'\nGIT_AUTHOR_EMAIL='"); |
| 542 | while (*message && *message != '\n' && *message != '\r') |
| 543 | if (skip_prefix(message, "> ", &message)) |
| 544 | break; |
| 545 | else if (*message != '\'') |
| 546 | strbuf_addch(&buf, *(message++)); |
| 547 | else |
| 548 | strbuf_addf(&buf, "'\\\\%c'", *(message++)); |
| 549 | strbuf_addstr(&buf, "'\nGIT_AUTHOR_DATE='@"); |
| 550 | while (*message && *message != '\n' && *message != '\r') |
| 551 | if (*message != '\'') |
| 552 | strbuf_addch(&buf, *(message++)); |
| 553 | else |
| 554 | strbuf_addf(&buf, "'\\\\%c'", *(message++)); |
| 555 | res = write_message(buf.buf, buf.len, rebase_path_author_script(), 1); |
| 556 | strbuf_release(&buf); |
| 557 | return res; |
| 558 | } |
| 559 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 560 | /* |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 561 | * Read a list of environment variable assignments (such as the author-script |
| 562 | * file) into an environment block. Returns -1 on error, 0 otherwise. |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 563 | */ |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 564 | static int read_env_script(struct argv_array *env) |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 565 | { |
| 566 | struct strbuf script = STRBUF_INIT; |
| 567 | int i, count = 0; |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 568 | char *p, *p2; |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 569 | |
| 570 | if (strbuf_read_file(&script, rebase_path_author_script(), 256) <= 0) |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 571 | return -1; |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 572 | |
| 573 | for (p = script.buf; *p; p++) |
| 574 | if (skip_prefix(p, "'\\\\''", (const char **)&p2)) |
| 575 | strbuf_splice(&script, p - script.buf, p2 - p, "'", 1); |
| 576 | else if (*p == '\'') |
| 577 | strbuf_splice(&script, p-- - script.buf, 1, "", 0); |
| 578 | else if (*p == '\n') { |
| 579 | *p = '\0'; |
| 580 | count++; |
| 581 | } |
| 582 | |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 583 | for (i = 0, p = script.buf; i < count; i++) { |
| 584 | argv_array_push(env, p); |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 585 | p += strlen(p) + 1; |
| 586 | } |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 587 | |
Johannes Schindelin | a2a20b0 | 2017-01-02 16:35:25 +0100 | [diff] [blame] | 588 | return 0; |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 589 | } |
| 590 | |
Johannes Schindelin | 791eb87 | 2016-10-21 14:26:32 +0200 | [diff] [blame] | 591 | static const char staged_changes_advice[] = |
| 592 | N_("you have staged changes in your working tree\n" |
| 593 | "If these changes are meant to be squashed into the previous commit, run:\n" |
| 594 | "\n" |
| 595 | " git commit --amend %s\n" |
| 596 | "\n" |
| 597 | "If they are meant to go into a new commit, run:\n" |
| 598 | "\n" |
| 599 | " git commit %s\n" |
| 600 | "\n" |
| 601 | "In both cases, once you're done, continue with:\n" |
| 602 | "\n" |
| 603 | " git rebase --continue\n"); |
| 604 | |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 605 | /* |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 606 | * If we are cherry-pick, and if the merge did not result in |
| 607 | * hand-editing, we will hit this commit and inherit the original |
| 608 | * author date and name. |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 609 | * |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 610 | * If we are revert, or if our cherry-pick results in a hand merge, |
| 611 | * we had better say that the current user is responsible for that. |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 612 | * |
| 613 | * An exception is when run_git_commit() is called during an |
| 614 | * interactive rebase: in that case, we will want to retain the |
| 615 | * author metadata. |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 616 | */ |
Junio C Hamano | ac2b0e8 | 2012-05-29 17:14:41 -0700 | [diff] [blame] | 617 | static int run_git_commit(const char *defmsg, struct replay_opts *opts, |
Johannes Schindelin | 0009426 | 2016-10-21 14:25:28 +0200 | [diff] [blame] | 618 | int allow_empty, int edit, int amend, |
| 619 | int cleanup_commit_message) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 620 | { |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 621 | struct child_process cmd = CHILD_PROCESS_INIT; |
Michael J Gruber | 17d65f0 | 2015-03-06 14:55:32 +0100 | [diff] [blame] | 622 | const char *value; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 623 | |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 624 | cmd.git_cmd = 1; |
| 625 | |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 626 | if (is_rebase_i(opts)) { |
Johannes Schindelin | 9a757c4 | 2017-01-02 16:35:34 +0100 | [diff] [blame] | 627 | if (!edit) { |
| 628 | cmd.stdout_to_stderr = 1; |
| 629 | cmd.err = -1; |
| 630 | } |
| 631 | |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 632 | if (read_env_script(&cmd.env_array)) { |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 633 | const char *gpg_opt = gpg_sign_opt_quoted(opts); |
| 634 | |
Johannes Schindelin | 791eb87 | 2016-10-21 14:26:32 +0200 | [diff] [blame] | 635 | return error(_(staged_changes_advice), |
| 636 | gpg_opt, gpg_opt); |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 637 | } |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 638 | } |
| 639 | |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 640 | argv_array_push(&cmd.args, "commit"); |
| 641 | argv_array_push(&cmd.args, "-n"); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 642 | |
Johannes Schindelin | 9240bed | 2016-10-21 14:25:17 +0200 | [diff] [blame] | 643 | if (amend) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 644 | argv_array_push(&cmd.args, "--amend"); |
Jeff King | 3bdd552 | 2014-06-19 17:28:20 -0400 | [diff] [blame] | 645 | if (opts->gpg_sign) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 646 | argv_array_pushf(&cmd.args, "-S%s", opts->gpg_sign); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 647 | if (opts->signoff) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 648 | argv_array_push(&cmd.args, "-s"); |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 649 | if (defmsg) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 650 | argv_array_pushl(&cmd.args, "-F", defmsg, NULL); |
Johannes Schindelin | 0009426 | 2016-10-21 14:25:28 +0200 | [diff] [blame] | 651 | if (cleanup_commit_message) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 652 | argv_array_push(&cmd.args, "--cleanup=strip"); |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 653 | if (edit) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 654 | argv_array_push(&cmd.args, "-e"); |
Johannes Schindelin | 0009426 | 2016-10-21 14:25:28 +0200 | [diff] [blame] | 655 | else if (!cleanup_commit_message && |
| 656 | !opts->signoff && !opts->record_origin && |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 657 | git_config_get_value("commit.cleanup", &value)) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 658 | argv_array_push(&cmd.args, "--cleanup=verbatim"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 659 | |
Junio C Hamano | ac2b0e8 | 2012-05-29 17:14:41 -0700 | [diff] [blame] | 660 | if (allow_empty) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 661 | argv_array_push(&cmd.args, "--allow-empty"); |
Neil Horman | df478b7 | 2012-04-11 16:21:53 -0400 | [diff] [blame] | 662 | |
Chris Webb | 4bee958 | 2012-08-02 11:38:51 +0100 | [diff] [blame] | 663 | if (opts->allow_empty_message) |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 664 | argv_array_push(&cmd.args, "--allow-empty-message"); |
Chris Webb | 4bee958 | 2012-08-02 11:38:51 +0100 | [diff] [blame] | 665 | |
Johannes Schindelin | 9a757c4 | 2017-01-02 16:35:34 +0100 | [diff] [blame] | 666 | if (cmd.err == -1) { |
| 667 | /* hide stderr on success */ |
| 668 | struct strbuf buf = STRBUF_INIT; |
| 669 | int rc = pipe_command(&cmd, |
| 670 | NULL, 0, |
| 671 | /* stdout is already redirected */ |
| 672 | NULL, 0, |
| 673 | &buf, 0); |
| 674 | if (rc) |
| 675 | fputs(buf.buf, stderr); |
| 676 | strbuf_release(&buf); |
| 677 | return rc; |
| 678 | } |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 679 | |
Johannes Schindelin | 07d968e | 2017-01-02 16:35:29 +0100 | [diff] [blame] | 680 | return run_command(&cmd); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 681 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 682 | |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 683 | static int is_original_commit_empty(struct commit *commit) |
| 684 | { |
| 685 | const unsigned char *ptree_sha1; |
| 686 | |
| 687 | if (parse_commit(commit)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 688 | return error(_("could not parse commit %s\n"), |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 689 | oid_to_hex(&commit->object.oid)); |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 690 | if (commit->parents) { |
| 691 | struct commit *parent = commit->parents->item; |
| 692 | if (parse_commit(parent)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 693 | return error(_("could not parse parent commit %s\n"), |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 694 | oid_to_hex(&parent->object.oid)); |
brian m. carlson | ed1c997 | 2015-11-10 02:22:29 +0000 | [diff] [blame] | 695 | ptree_sha1 = parent->tree->object.oid.hash; |
Neil Horman | b27cfb0 | 2012-04-20 10:36:15 -0400 | [diff] [blame] | 696 | } else { |
| 697 | ptree_sha1 = EMPTY_TREE_SHA1_BIN; /* commit is root */ |
| 698 | } |
| 699 | |
brian m. carlson | ed1c997 | 2015-11-10 02:22:29 +0000 | [diff] [blame] | 700 | return !hashcmp(ptree_sha1, commit->tree->object.oid.hash); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 701 | } |
| 702 | |
Junio C Hamano | ac2b0e8 | 2012-05-29 17:14:41 -0700 | [diff] [blame] | 703 | /* |
| 704 | * Do we run "git commit" with "--allow-empty"? |
| 705 | */ |
| 706 | static int allow_empty(struct replay_opts *opts, struct commit *commit) |
| 707 | { |
| 708 | int index_unchanged, empty_commit; |
| 709 | |
| 710 | /* |
| 711 | * Three cases: |
| 712 | * |
| 713 | * (1) we do not allow empty at all and error out. |
| 714 | * |
| 715 | * (2) we allow ones that were initially empty, but |
| 716 | * forbid the ones that become empty; |
| 717 | * |
| 718 | * (3) we allow both. |
| 719 | */ |
| 720 | if (!opts->allow_empty) |
| 721 | return 0; /* let "git commit" barf as necessary */ |
| 722 | |
| 723 | index_unchanged = is_index_unchanged(); |
| 724 | if (index_unchanged < 0) |
| 725 | return index_unchanged; |
| 726 | if (!index_unchanged) |
| 727 | return 0; /* we do not have to say --allow-empty */ |
| 728 | |
| 729 | if (opts->keep_redundant_commits) |
| 730 | return 1; |
| 731 | |
| 732 | empty_commit = is_original_commit_empty(commit); |
| 733 | if (empty_commit < 0) |
| 734 | return empty_commit; |
| 735 | if (!empty_commit) |
| 736 | return 0; |
| 737 | else |
| 738 | return 1; |
| 739 | } |
| 740 | |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 741 | /* |
| 742 | * Note that ordering matters in this enum. Not only must it match the mapping |
| 743 | * below, it is also divided into several sections that matter. When adding |
| 744 | * new commands, make sure you add it in the right section. |
| 745 | */ |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 746 | enum todo_command { |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 747 | /* commands that handle commits */ |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 748 | TODO_PICK = 0, |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 749 | TODO_REVERT, |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 750 | TODO_EDIT, |
Johannes Schindelin | 04efc8b | 2017-01-02 16:28:00 +0100 | [diff] [blame] | 751 | TODO_REWORD, |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 752 | TODO_FIXUP, |
| 753 | TODO_SQUASH, |
Johannes Schindelin | 311af52 | 2017-01-02 16:26:47 +0100 | [diff] [blame] | 754 | /* commands that do something else than handling a single commit */ |
| 755 | TODO_EXEC, |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 756 | /* commands that do nothing but are counted for reporting progress */ |
Johannes Schindelin | b3fdd58 | 2017-01-02 16:34:34 +0100 | [diff] [blame] | 757 | TODO_NOOP, |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 758 | TODO_DROP, |
| 759 | /* comments (not counted for reporting progress) */ |
| 760 | TODO_COMMENT |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 761 | }; |
| 762 | |
Johannes Schindelin | 414697a | 2017-01-02 16:27:15 +0100 | [diff] [blame] | 763 | static struct { |
| 764 | char c; |
| 765 | const char *str; |
| 766 | } todo_command_info[] = { |
| 767 | { 'p', "pick" }, |
| 768 | { 0, "revert" }, |
| 769 | { 'e', "edit" }, |
Johannes Schindelin | 04efc8b | 2017-01-02 16:28:00 +0100 | [diff] [blame] | 770 | { 'r', "reword" }, |
Johannes Schindelin | 414697a | 2017-01-02 16:27:15 +0100 | [diff] [blame] | 771 | { 'f', "fixup" }, |
| 772 | { 's', "squash" }, |
| 773 | { 'x', "exec" }, |
Johannes Schindelin | b3fdd58 | 2017-01-02 16:34:34 +0100 | [diff] [blame] | 774 | { 0, "noop" }, |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 775 | { 'd', "drop" }, |
| 776 | { 0, NULL } |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 777 | }; |
| 778 | |
| 779 | static const char *command_to_string(const enum todo_command command) |
| 780 | { |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 781 | if (command < TODO_COMMENT) |
Johannes Schindelin | 414697a | 2017-01-02 16:27:15 +0100 | [diff] [blame] | 782 | return todo_command_info[command].str; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 783 | die("Unknown command: %d", command); |
| 784 | } |
| 785 | |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 786 | static int is_noop(const enum todo_command command) |
| 787 | { |
Johannes Schindelin | b3fdd58 | 2017-01-02 16:34:34 +0100 | [diff] [blame] | 788 | return TODO_NOOP <= command; |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 789 | } |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 790 | |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 791 | static int is_fixup(enum todo_command command) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 792 | { |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 793 | return command == TODO_FIXUP || command == TODO_SQUASH; |
| 794 | } |
| 795 | |
| 796 | static int update_squash_messages(enum todo_command command, |
| 797 | struct commit *commit, struct replay_opts *opts) |
| 798 | { |
| 799 | struct strbuf buf = STRBUF_INIT; |
| 800 | int count, res; |
| 801 | const char *message, *body; |
| 802 | |
| 803 | if (file_exists(rebase_path_squash_msg())) { |
| 804 | struct strbuf header = STRBUF_INIT; |
| 805 | char *eol, *p; |
| 806 | |
| 807 | if (strbuf_read_file(&buf, rebase_path_squash_msg(), 2048) <= 0) |
| 808 | return error(_("could not read '%s'"), |
| 809 | rebase_path_squash_msg()); |
| 810 | |
| 811 | p = buf.buf + 1; |
| 812 | eol = strchrnul(buf.buf, '\n'); |
| 813 | if (buf.buf[0] != comment_line_char || |
| 814 | (p += strcspn(p, "0123456789\n")) == eol) |
| 815 | return error(_("unexpected 1st line of squash message:" |
| 816 | "\n\n\t%.*s"), |
| 817 | (int)(eol - buf.buf), buf.buf); |
| 818 | count = strtol(p, NULL, 10); |
| 819 | |
| 820 | if (count < 1) |
| 821 | return error(_("invalid 1st line of squash message:\n" |
| 822 | "\n\t%.*s"), |
| 823 | (int)(eol - buf.buf), buf.buf); |
| 824 | |
| 825 | strbuf_addf(&header, "%c ", comment_line_char); |
| 826 | strbuf_addf(&header, |
| 827 | _("This is a combination of %d commits."), ++count); |
| 828 | strbuf_splice(&buf, 0, eol - buf.buf, header.buf, header.len); |
| 829 | strbuf_release(&header); |
| 830 | } else { |
| 831 | unsigned char head[20]; |
| 832 | struct commit *head_commit; |
| 833 | const char *head_message, *body; |
| 834 | |
| 835 | if (get_sha1("HEAD", head)) |
| 836 | return error(_("need a HEAD to fixup")); |
| 837 | if (!(head_commit = lookup_commit_reference(head))) |
| 838 | return error(_("could not read HEAD")); |
| 839 | if (!(head_message = get_commit_buffer(head_commit, NULL))) |
| 840 | return error(_("could not read HEAD's commit message")); |
| 841 | |
| 842 | find_commit_subject(head_message, &body); |
| 843 | if (write_message(body, strlen(body), |
| 844 | rebase_path_fixup_msg(), 0)) { |
| 845 | unuse_commit_buffer(head_commit, head_message); |
| 846 | return error(_("cannot write '%s'"), |
| 847 | rebase_path_fixup_msg()); |
| 848 | } |
| 849 | |
| 850 | count = 2; |
| 851 | strbuf_addf(&buf, "%c ", comment_line_char); |
| 852 | strbuf_addf(&buf, _("This is a combination of %d commits."), |
| 853 | count); |
| 854 | strbuf_addf(&buf, "\n%c ", comment_line_char); |
| 855 | strbuf_addstr(&buf, _("This is the 1st commit message:")); |
| 856 | strbuf_addstr(&buf, "\n\n"); |
| 857 | strbuf_addstr(&buf, body); |
| 858 | |
| 859 | unuse_commit_buffer(head_commit, head_message); |
| 860 | } |
| 861 | |
| 862 | if (!(message = get_commit_buffer(commit, NULL))) |
| 863 | return error(_("could not read commit message of %s"), |
| 864 | oid_to_hex(&commit->object.oid)); |
| 865 | find_commit_subject(message, &body); |
| 866 | |
| 867 | if (command == TODO_SQUASH) { |
| 868 | unlink(rebase_path_fixup_msg()); |
| 869 | strbuf_addf(&buf, "\n%c ", comment_line_char); |
| 870 | strbuf_addf(&buf, _("This is the commit message #%d:"), count); |
| 871 | strbuf_addstr(&buf, "\n\n"); |
| 872 | strbuf_addstr(&buf, body); |
| 873 | } else if (command == TODO_FIXUP) { |
| 874 | strbuf_addf(&buf, "\n%c ", comment_line_char); |
| 875 | strbuf_addf(&buf, _("The commit message #%d will be skipped:"), |
| 876 | count); |
| 877 | strbuf_addstr(&buf, "\n\n"); |
| 878 | strbuf_add_commented_lines(&buf, body, strlen(body)); |
| 879 | } else |
| 880 | return error(_("unknown command: %d"), command); |
| 881 | unuse_commit_buffer(commit, message); |
| 882 | |
| 883 | res = write_message(buf.buf, buf.len, rebase_path_squash_msg(), 0); |
| 884 | strbuf_release(&buf); |
| 885 | return res; |
| 886 | } |
| 887 | |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 888 | static void flush_rewritten_pending(void) { |
| 889 | struct strbuf buf = STRBUF_INIT; |
| 890 | unsigned char newsha1[20]; |
| 891 | FILE *out; |
| 892 | |
| 893 | if (strbuf_read_file(&buf, rebase_path_rewritten_pending(), 82) > 0 && |
| 894 | !get_sha1("HEAD", newsha1) && |
| 895 | (out = fopen(rebase_path_rewritten_list(), "a"))) { |
| 896 | char *bol = buf.buf, *eol; |
| 897 | |
| 898 | while (*bol) { |
| 899 | eol = strchrnul(bol, '\n'); |
| 900 | fprintf(out, "%.*s %s\n", (int)(eol - bol), |
| 901 | bol, sha1_to_hex(newsha1)); |
| 902 | if (!*eol) |
| 903 | break; |
| 904 | bol = eol + 1; |
| 905 | } |
| 906 | fclose(out); |
| 907 | unlink(rebase_path_rewritten_pending()); |
| 908 | } |
| 909 | strbuf_release(&buf); |
| 910 | } |
| 911 | |
| 912 | static void record_in_rewritten(struct object_id *oid, |
| 913 | enum todo_command next_command) { |
| 914 | FILE *out = fopen(rebase_path_rewritten_pending(), "a"); |
| 915 | |
| 916 | if (!out) |
| 917 | return; |
| 918 | |
| 919 | fprintf(out, "%s\n", oid_to_hex(oid)); |
| 920 | fclose(out); |
| 921 | |
| 922 | if (!is_fixup(next_command)) |
| 923 | flush_rewritten_pending(); |
| 924 | } |
| 925 | |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 926 | static int do_pick_commit(enum todo_command command, struct commit *commit, |
| 927 | struct replay_opts *opts, int final_fixup) |
| 928 | { |
| 929 | int edit = opts->edit, cleanup_commit_message = 0; |
| 930 | const char *msg_file = edit ? NULL : git_path_merge_msg(); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 931 | unsigned char head[20]; |
| 932 | struct commit *base, *next, *parent; |
| 933 | const char *base_label, *next_label; |
Jeff King | d74a4e5 | 2014-06-10 17:39:35 -0400 | [diff] [blame] | 934 | struct commit_message msg = { NULL, NULL, NULL, NULL }; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 935 | struct strbuf msgbuf = STRBUF_INIT; |
Johannes Schindelin | bcbb68b | 2017-01-02 16:28:05 +0100 | [diff] [blame] | 936 | int res, unborn = 0, amend = 0, allow = 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 937 | |
| 938 | if (opts->no_commit) { |
| 939 | /* |
| 940 | * We do not intend to commit immediately. We just want to |
| 941 | * merge the differences in, so let's compute the tree |
| 942 | * that represents the "current" state for merge-recursive |
| 943 | * to work on. |
| 944 | */ |
| 945 | if (write_cache_as_tree(head, 0, NULL)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 946 | return error(_("your index file is unmerged.")); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 947 | } else { |
Martin von Zweigbergk | 334ae39 | 2012-12-21 11:10:11 -0800 | [diff] [blame] | 948 | unborn = get_sha1("HEAD", head); |
| 949 | if (unborn) |
| 950 | hashcpy(head, EMPTY_TREE_SHA1_BIN); |
Nguyễn Thái Ngọc Duy | 018ec3c | 2016-10-24 17:42:21 +0700 | [diff] [blame] | 951 | if (index_differs_from(unborn ? EMPTY_TREE_SHA1_HEX : "HEAD", 0, 0)) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 952 | return error_dirty_index(opts); |
| 953 | } |
| 954 | discard_cache(); |
| 955 | |
Johannes Schindelin | 637666c | 2017-01-02 16:26:08 +0100 | [diff] [blame] | 956 | if (!commit->parents) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 957 | parent = NULL; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 958 | else if (commit->parents->next) { |
| 959 | /* Reverting or cherry-picking a merge commit */ |
| 960 | int cnt; |
| 961 | struct commit_list *p; |
| 962 | |
| 963 | if (!opts->mainline) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 964 | return error(_("commit %s is a merge but no -m option was given."), |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 965 | oid_to_hex(&commit->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 966 | |
| 967 | for (cnt = 1, p = commit->parents; |
| 968 | cnt != opts->mainline && p; |
| 969 | cnt++) |
| 970 | p = p->next; |
| 971 | if (cnt != opts->mainline || !p) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 972 | return error(_("commit %s does not have parent %d"), |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 973 | oid_to_hex(&commit->object.oid), opts->mainline); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 974 | parent = p->item; |
| 975 | } else if (0 < opts->mainline) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 976 | return error(_("mainline was specified but commit %s is not a merge."), |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 977 | oid_to_hex(&commit->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 978 | else |
| 979 | parent = commit->parents->item; |
| 980 | |
Johannes Schindelin | bcbb68b | 2017-01-02 16:28:05 +0100 | [diff] [blame] | 981 | if (get_message(commit, &msg) != 0) |
| 982 | return error(_("cannot get commit message for %s"), |
| 983 | oid_to_hex(&commit->object.oid)); |
| 984 | |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 985 | if (opts->allow_ff && !is_fixup(command) && |
brian m. carlson | ed1c997 | 2015-11-10 02:22:29 +0000 | [diff] [blame] | 986 | ((parent && !hashcmp(parent->object.oid.hash, head)) || |
Johannes Schindelin | bcbb68b | 2017-01-02 16:28:05 +0100 | [diff] [blame] | 987 | (!parent && unborn))) { |
| 988 | if (is_rebase_i(opts)) |
| 989 | write_author_script(msg.message); |
| 990 | res = fast_forward_to(commit->object.oid.hash, head, unborn, |
| 991 | opts); |
| 992 | if (res || command != TODO_REWORD) |
| 993 | goto leave; |
| 994 | edit = amend = 1; |
| 995 | msg_file = NULL; |
| 996 | goto fast_forward_edit; |
| 997 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 998 | if (parent && parse_commit(parent) < 0) |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 999 | /* TRANSLATORS: The first %s will be a "todo" command like |
| 1000 | "revert" or "pick", the second %s a SHA1. */ |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1001 | return error(_("%s: cannot parse parent commit %s"), |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1002 | command_to_string(command), |
| 1003 | oid_to_hex(&parent->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1004 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1005 | /* |
| 1006 | * "commit" is an existing commit. We would want to apply |
| 1007 | * the difference it introduces since its first parent "prev" |
| 1008 | * on top of the current HEAD if we are cherry-pick. Or the |
| 1009 | * reverse of it if we are revert. |
| 1010 | */ |
| 1011 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1012 | if (command == TODO_REVERT) { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1013 | base = commit; |
| 1014 | base_label = msg.label; |
| 1015 | next = parent; |
| 1016 | next_label = msg.parent_label; |
| 1017 | strbuf_addstr(&msgbuf, "Revert \""); |
| 1018 | strbuf_addstr(&msgbuf, msg.subject); |
| 1019 | strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit "); |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 1020 | strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1021 | |
| 1022 | if (commit->parents && commit->parents->next) { |
| 1023 | strbuf_addstr(&msgbuf, ", reversing\nchanges made to "); |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 1024 | strbuf_addstr(&msgbuf, oid_to_hex(&parent->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1025 | } |
| 1026 | strbuf_addstr(&msgbuf, ".\n"); |
| 1027 | } else { |
| 1028 | const char *p; |
| 1029 | |
| 1030 | base = parent; |
| 1031 | base_label = msg.parent_label; |
| 1032 | next = commit; |
| 1033 | next_label = msg.label; |
| 1034 | |
Johannes Schindelin | 23aa514 | 2017-01-02 16:26:20 +0100 | [diff] [blame] | 1035 | /* Append the commit log message to msgbuf. */ |
| 1036 | if (find_commit_subject(msg.message, &p)) |
| 1037 | strbuf_addstr(&msgbuf, p); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1038 | |
| 1039 | if (opts->record_origin) { |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 1040 | if (!has_conforming_footer(&msgbuf, NULL, 0)) |
Brandon Casey | b971e04 | 2013-02-12 02:17:34 -0800 | [diff] [blame] | 1041 | strbuf_addch(&msgbuf, '\n'); |
Brandon Casey | cd650a4 | 2013-02-12 02:17:32 -0800 | [diff] [blame] | 1042 | strbuf_addstr(&msgbuf, cherry_picked_prefix); |
brian m. carlson | f2fd076 | 2015-11-10 02:22:28 +0000 | [diff] [blame] | 1043 | strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid)); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1044 | strbuf_addstr(&msgbuf, ")\n"); |
| 1045 | } |
| 1046 | } |
| 1047 | |
Johannes Schindelin | 04efc8b | 2017-01-02 16:28:00 +0100 | [diff] [blame] | 1048 | if (command == TODO_REWORD) |
| 1049 | edit = 1; |
| 1050 | else if (is_fixup(command)) { |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1051 | if (update_squash_messages(command, commit, opts)) |
| 1052 | return -1; |
| 1053 | amend = 1; |
| 1054 | if (!final_fixup) |
| 1055 | msg_file = rebase_path_squash_msg(); |
| 1056 | else if (file_exists(rebase_path_fixup_msg())) { |
| 1057 | cleanup_commit_message = 1; |
| 1058 | msg_file = rebase_path_fixup_msg(); |
| 1059 | } else { |
| 1060 | const char *dest = git_path("SQUASH_MSG"); |
| 1061 | unlink(dest); |
| 1062 | if (copy_file(dest, rebase_path_squash_msg(), 0666)) |
| 1063 | return error(_("could not rename '%s' to '%s'"), |
| 1064 | rebase_path_squash_msg(), dest); |
| 1065 | unlink(git_path("MERGE_MSG")); |
| 1066 | msg_file = dest; |
| 1067 | edit = 1; |
| 1068 | } |
| 1069 | } |
| 1070 | |
Johannes Schindelin | 0473f28 | 2017-01-02 16:27:18 +0100 | [diff] [blame] | 1071 | if (is_rebase_i(opts) && write_author_script(msg.message) < 0) |
| 1072 | res = -1; |
| 1073 | else if (!opts->strategy || !strcmp(opts->strategy, "recursive") || command == TODO_REVERT) { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1074 | res = do_recursive_merge(base, next, base_label, next_label, |
| 1075 | head, &msgbuf, opts); |
Johannes Schindelin | f241ff0 | 2016-07-26 18:06:02 +0200 | [diff] [blame] | 1076 | if (res < 0) |
| 1077 | return res; |
Johannes Schindelin | 7587149 | 2016-10-21 14:26:05 +0200 | [diff] [blame] | 1078 | res |= write_message(msgbuf.buf, msgbuf.len, |
Johannes Schindelin | f56fffe | 2016-10-21 14:26:09 +0200 | [diff] [blame] | 1079 | git_path_merge_msg(), 0); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1080 | } else { |
| 1081 | struct commit_list *common = NULL; |
| 1082 | struct commit_list *remotes = NULL; |
| 1083 | |
Johannes Schindelin | 7587149 | 2016-10-21 14:26:05 +0200 | [diff] [blame] | 1084 | res = write_message(msgbuf.buf, msgbuf.len, |
Johannes Schindelin | f56fffe | 2016-10-21 14:26:09 +0200 | [diff] [blame] | 1085 | git_path_merge_msg(), 0); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1086 | |
| 1087 | commit_list_insert(base, &common); |
| 1088 | commit_list_insert(next, &remotes); |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 1089 | res |= try_merge_command(opts->strategy, |
| 1090 | opts->xopts_nr, (const char **)opts->xopts, |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1091 | common, sha1_to_hex(head), remotes); |
| 1092 | free_commit_list(common); |
| 1093 | free_commit_list(remotes); |
| 1094 | } |
Johannes Schindelin | 452202c | 2016-10-21 14:25:41 +0200 | [diff] [blame] | 1095 | strbuf_release(&msgbuf); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1096 | |
| 1097 | /* |
| 1098 | * If the merge was clean or if it failed due to conflict, we write |
| 1099 | * CHERRY_PICK_HEAD for the subsequent invocation of commit to use. |
| 1100 | * However, if the merge did not even start, then we don't want to |
| 1101 | * write it at all. |
| 1102 | */ |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1103 | if (command == TODO_PICK && !opts->no_commit && (res == 0 || res == 1) && |
Johannes Schindelin | dbfad03 | 2016-08-26 15:47:14 +0200 | [diff] [blame] | 1104 | update_ref(NULL, "CHERRY_PICK_HEAD", commit->object.oid.hash, NULL, |
| 1105 | REF_NODEREF, UPDATE_REFS_MSG_ON_ERR)) |
| 1106 | res = -1; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1107 | if (command == TODO_REVERT && ((opts->no_commit && res == 0) || res == 1) && |
Johannes Schindelin | dbfad03 | 2016-08-26 15:47:14 +0200 | [diff] [blame] | 1108 | update_ref(NULL, "REVERT_HEAD", commit->object.oid.hash, NULL, |
| 1109 | REF_NODEREF, UPDATE_REFS_MSG_ON_ERR)) |
| 1110 | res = -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1111 | |
| 1112 | if (res) { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1113 | error(command == TODO_REVERT |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1114 | ? _("could not revert %s... %s") |
| 1115 | : _("could not apply %s... %s"), |
Johannes Schindelin | 3975596 | 2016-10-21 14:24:37 +0200 | [diff] [blame] | 1116 | short_commit_name(commit), msg.subject); |
Phil Hord | ed727b1 | 2012-02-21 19:44:17 -0500 | [diff] [blame] | 1117 | print_advice(res == 1, opts); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1118 | rerere(opts->allow_rerere_auto); |
Felipe Contreras | c8d1351 | 2013-05-28 22:56:21 -0500 | [diff] [blame] | 1119 | goto leave; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1120 | } |
| 1121 | |
Felipe Contreras | c8d1351 | 2013-05-28 22:56:21 -0500 | [diff] [blame] | 1122 | allow = allow_empty(opts, commit); |
Felipe Contreras | 706728a | 2013-06-06 03:58:57 -0500 | [diff] [blame] | 1123 | if (allow < 0) { |
| 1124 | res = allow; |
| 1125 | goto leave; |
| 1126 | } |
Felipe Contreras | c8d1351 | 2013-05-28 22:56:21 -0500 | [diff] [blame] | 1127 | if (!opts->no_commit) |
Johannes Schindelin | bcbb68b | 2017-01-02 16:28:05 +0100 | [diff] [blame] | 1128 | fast_forward_edit: |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1129 | res = run_git_commit(msg_file, opts, allow, edit, amend, |
| 1130 | cleanup_commit_message); |
| 1131 | |
| 1132 | if (!res && final_fixup) { |
| 1133 | unlink(rebase_path_fixup_msg()); |
| 1134 | unlink(rebase_path_squash_msg()); |
| 1135 | } |
Felipe Contreras | c8d1351 | 2013-05-28 22:56:21 -0500 | [diff] [blame] | 1136 | |
| 1137 | leave: |
Jeff King | d74a4e5 | 2014-06-10 17:39:35 -0400 | [diff] [blame] | 1138 | free_message(commit, &msg); |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 1139 | update_abort_safety_file(); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1140 | |
| 1141 | return res; |
| 1142 | } |
| 1143 | |
Johannes Schindelin | c3e8618 | 2016-09-09 16:37:18 +0200 | [diff] [blame] | 1144 | static int prepare_revs(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1145 | { |
Martin von Zweigbergk | a73e22e | 2012-08-28 23:15:56 -0700 | [diff] [blame] | 1146 | /* |
| 1147 | * picking (but not reverting) ranges (but not individual revisions) |
| 1148 | * should be done in reverse |
| 1149 | */ |
| 1150 | if (opts->action == REPLAY_PICK && !opts->revs->no_walk) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1151 | opts->revs->reverse ^= 1; |
| 1152 | |
| 1153 | if (prepare_revision_walk(opts->revs)) |
Johannes Schindelin | c3e8618 | 2016-09-09 16:37:18 +0200 | [diff] [blame] | 1154 | return error(_("revision walk setup failed")); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1155 | |
| 1156 | if (!opts->revs->commits) |
Johannes Schindelin | c3e8618 | 2016-09-09 16:37:18 +0200 | [diff] [blame] | 1157 | return error(_("empty commit set passed")); |
| 1158 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1159 | } |
| 1160 | |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 1161 | static int read_and_refresh_cache(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1162 | { |
| 1163 | static struct lock_file index_lock; |
| 1164 | int index_fd = hold_locked_index(&index_lock, 0); |
Johannes Schindelin | 49fb937 | 2016-09-09 16:38:20 +0200 | [diff] [blame] | 1165 | if (read_index_preload(&the_index, NULL) < 0) { |
| 1166 | rollback_lock_file(&index_lock); |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 1167 | return error(_("git %s: failed to read the index"), |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 1168 | _(action_name(opts))); |
Johannes Schindelin | 49fb937 | 2016-09-09 16:38:20 +0200 | [diff] [blame] | 1169 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1170 | refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL); |
Nguyễn Thái Ngọc Duy | 33c297a | 2014-04-28 17:55:24 +0700 | [diff] [blame] | 1171 | if (the_index.cache_changed && index_fd >= 0) { |
Johannes Schindelin | 49fb937 | 2016-09-09 16:38:20 +0200 | [diff] [blame] | 1172 | if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) { |
| 1173 | rollback_lock_file(&index_lock); |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 1174 | return error(_("git %s: failed to refresh the index"), |
Johannes Schindelin | c28cbc5 | 2016-10-21 14:26:17 +0200 | [diff] [blame] | 1175 | _(action_name(opts))); |
Johannes Schindelin | 49fb937 | 2016-09-09 16:38:20 +0200 | [diff] [blame] | 1176 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1177 | } |
| 1178 | rollback_lock_file(&index_lock); |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 1179 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1180 | } |
| 1181 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1182 | struct todo_item { |
| 1183 | enum todo_command command; |
| 1184 | struct commit *commit; |
Johannes Schindelin | c22f7df | 2016-10-21 14:25:00 +0200 | [diff] [blame] | 1185 | const char *arg; |
| 1186 | int arg_len; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1187 | size_t offset_in_buf; |
| 1188 | }; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1189 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1190 | struct todo_list { |
| 1191 | struct strbuf buf; |
| 1192 | struct todo_item *items; |
| 1193 | int nr, alloc, current; |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1194 | int done_nr, total_nr; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1195 | }; |
| 1196 | |
| 1197 | #define TODO_LIST_INIT { STRBUF_INIT } |
| 1198 | |
| 1199 | static void todo_list_release(struct todo_list *todo_list) |
| 1200 | { |
| 1201 | strbuf_release(&todo_list->buf); |
| 1202 | free(todo_list->items); |
| 1203 | todo_list->items = NULL; |
| 1204 | todo_list->nr = todo_list->alloc = 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1205 | } |
| 1206 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1207 | static struct todo_item *append_new_todo(struct todo_list *todo_list) |
| 1208 | { |
| 1209 | ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc); |
| 1210 | return todo_list->items + todo_list->nr++; |
| 1211 | } |
| 1212 | |
| 1213 | static int parse_insn_line(struct todo_item *item, const char *bol, char *eol) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1214 | { |
| 1215 | unsigned char commit_sha1[20]; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1216 | char *end_of_object_name; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1217 | int i, saved, status, padding; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1218 | |
Johannes Schindelin | 8f8550b | 2016-10-21 14:25:36 +0200 | [diff] [blame] | 1219 | /* left-trim */ |
| 1220 | bol += strspn(bol, " \t"); |
| 1221 | |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 1222 | if (bol == eol || *bol == '\r' || *bol == comment_line_char) { |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 1223 | item->command = TODO_COMMENT; |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 1224 | item->commit = NULL; |
| 1225 | item->arg = bol; |
| 1226 | item->arg_len = eol - bol; |
| 1227 | return 0; |
| 1228 | } |
| 1229 | |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 1230 | for (i = 0; i < TODO_COMMENT; i++) |
Johannes Schindelin | 414697a | 2017-01-02 16:27:15 +0100 | [diff] [blame] | 1231 | if (skip_prefix(bol, todo_command_info[i].str, &bol)) { |
| 1232 | item->command = i; |
| 1233 | break; |
| 1234 | } else if (bol[1] == ' ' && *bol == todo_command_info[i].c) { |
| 1235 | bol++; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1236 | item->command = i; |
| 1237 | break; |
| 1238 | } |
Johannes Schindelin | ac19147 | 2017-01-02 16:34:39 +0100 | [diff] [blame] | 1239 | if (i >= TODO_COMMENT) |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1240 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1241 | |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 1242 | if (item->command == TODO_NOOP) { |
| 1243 | item->commit = NULL; |
| 1244 | item->arg = bol; |
| 1245 | item->arg_len = eol - bol; |
| 1246 | return 0; |
| 1247 | } |
| 1248 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1249 | /* Eat up extra spaces/ tabs before object name */ |
| 1250 | padding = strspn(bol, " \t"); |
| 1251 | if (!padding) |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1252 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1253 | bol += padding; |
| 1254 | |
Johannes Schindelin | 311af52 | 2017-01-02 16:26:47 +0100 | [diff] [blame] | 1255 | if (item->command == TODO_EXEC) { |
| 1256 | item->arg = bol; |
| 1257 | item->arg_len = (int)(eol - bol); |
| 1258 | return 0; |
| 1259 | } |
| 1260 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1261 | end_of_object_name = (char *) bol + strcspn(bol, " \t\n"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1262 | saved = *end_of_object_name; |
| 1263 | *end_of_object_name = '\0'; |
| 1264 | status = get_sha1(bol, commit_sha1); |
| 1265 | *end_of_object_name = saved; |
| 1266 | |
Johannes Schindelin | c22f7df | 2016-10-21 14:25:00 +0200 | [diff] [blame] | 1267 | item->arg = end_of_object_name + strspn(end_of_object_name, " \t"); |
| 1268 | item->arg_len = (int)(eol - item->arg); |
| 1269 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1270 | if (status < 0) |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1271 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1272 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1273 | item->commit = lookup_commit_reference(commit_sha1); |
| 1274 | return !item->commit; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1275 | } |
| 1276 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1277 | static int parse_insn_buffer(char *buf, struct todo_list *todo_list) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1278 | { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1279 | struct todo_item *item; |
| 1280 | char *p = buf, *next_p; |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1281 | int i, res = 0, fixup_okay = file_exists(rebase_path_done()); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1282 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1283 | for (i = 1; *p; i++, p = next_p) { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1284 | char *eol = strchrnul(p, '\n'); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1285 | |
| 1286 | next_p = *eol ? eol + 1 /* skip LF */ : eol; |
| 1287 | |
Johannes Schindelin | 6307041 | 2016-10-21 14:24:46 +0200 | [diff] [blame] | 1288 | if (p != eol && eol[-1] == '\r') |
| 1289 | eol--; /* strip Carriage Return */ |
| 1290 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1291 | item = append_new_todo(todo_list); |
| 1292 | item->offset_in_buf = p - todo_list->buf.buf; |
| 1293 | if (parse_insn_line(item, p, eol)) { |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1294 | res = error(_("invalid line %d: %.*s"), |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1295 | i, (int)(eol - p), p); |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1296 | item->command = TODO_NOOP; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1297 | } |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1298 | |
| 1299 | if (fixup_okay) |
| 1300 | ; /* do nothing */ |
| 1301 | else if (is_fixup(item->command)) |
| 1302 | return error(_("cannot '%s' without a previous commit"), |
| 1303 | command_to_string(item->command)); |
| 1304 | else if (!is_noop(item->command)) |
| 1305 | fixup_okay = 1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1306 | } |
Johannes Schindelin | 5286527 | 2017-01-02 16:27:34 +0100 | [diff] [blame] | 1307 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1308 | return res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1309 | } |
| 1310 | |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1311 | static int count_commands(struct todo_list *todo_list) |
| 1312 | { |
| 1313 | int count = 0, i; |
| 1314 | |
| 1315 | for (i = 0; i < todo_list->nr; i++) |
| 1316 | if (todo_list->items[i].command != TODO_COMMENT) |
| 1317 | count++; |
| 1318 | |
| 1319 | return count; |
| 1320 | } |
| 1321 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1322 | static int read_populate_todo(struct todo_list *todo_list, |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1323 | struct replay_opts *opts) |
| 1324 | { |
Johannes Schindelin | c024650 | 2016-10-21 14:24:32 +0200 | [diff] [blame] | 1325 | const char *todo_file = get_todo_path(opts); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1326 | int fd, res; |
| 1327 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1328 | strbuf_reset(&todo_list->buf); |
Johannes Schindelin | c024650 | 2016-10-21 14:24:32 +0200 | [diff] [blame] | 1329 | fd = open(todo_file, O_RDONLY); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1330 | if (fd < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1331 | return error_errno(_("could not open '%s'"), todo_file); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1332 | if (strbuf_read(&todo_list->buf, fd, 0) < 0) { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1333 | close(fd); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1334 | return error(_("could not read '%s'."), todo_file); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1335 | } |
| 1336 | close(fd); |
| 1337 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1338 | res = parse_insn_buffer(todo_list->buf.buf, todo_list); |
Johannes Schindelin | 27fdbb9 | 2017-01-02 16:35:42 +0100 | [diff] [blame] | 1339 | if (res) { |
| 1340 | if (is_rebase_i(opts)) |
| 1341 | return error(_("please fix this using " |
| 1342 | "'git rebase --edit-todo'.")); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1343 | return error(_("unusable instruction sheet: '%s'"), todo_file); |
Johannes Schindelin | 27fdbb9 | 2017-01-02 16:35:42 +0100 | [diff] [blame] | 1344 | } |
Johannes Schindelin | 2eeaf1b | 2016-10-21 14:26:13 +0200 | [diff] [blame] | 1345 | |
Johannes Schindelin | 5286527 | 2017-01-02 16:27:34 +0100 | [diff] [blame] | 1346 | if (!todo_list->nr && |
| 1347 | (!is_rebase_i(opts) || !file_exists(rebase_path_done()))) |
| 1348 | return error(_("no commits parsed.")); |
| 1349 | |
Johannes Schindelin | 2eeaf1b | 2016-10-21 14:26:13 +0200 | [diff] [blame] | 1350 | if (!is_rebase_i(opts)) { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1351 | enum todo_command valid = |
| 1352 | opts->action == REPLAY_PICK ? TODO_PICK : TODO_REVERT; |
| 1353 | int i; |
| 1354 | |
| 1355 | for (i = 0; i < todo_list->nr; i++) |
| 1356 | if (valid == todo_list->items[i].command) |
| 1357 | continue; |
| 1358 | else if (valid == TODO_PICK) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1359 | return error(_("cannot cherry-pick during a revert.")); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1360 | else |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1361 | return error(_("cannot revert during a cherry-pick.")); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1362 | } |
| 1363 | |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1364 | if (is_rebase_i(opts)) { |
| 1365 | struct todo_list done = TODO_LIST_INIT; |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 1366 | FILE *f = fopen(rebase_path_msgtotal(), "w"); |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1367 | |
| 1368 | if (strbuf_read_file(&done.buf, rebase_path_done(), 0) > 0 && |
| 1369 | !parse_insn_buffer(done.buf.buf, &done)) |
| 1370 | todo_list->done_nr = count_commands(&done); |
| 1371 | else |
| 1372 | todo_list->done_nr = 0; |
| 1373 | |
| 1374 | todo_list->total_nr = todo_list->done_nr |
| 1375 | + count_commands(todo_list); |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1376 | todo_list_release(&done); |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 1377 | |
| 1378 | if (f) { |
| 1379 | fprintf(f, "%d\n", todo_list->total_nr); |
| 1380 | fclose(f); |
| 1381 | } |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1382 | } |
| 1383 | |
Johannes Schindelin | 0ae42a0 | 2016-09-09 16:37:24 +0200 | [diff] [blame] | 1384 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1385 | } |
| 1386 | |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 1387 | static int git_config_string_dup(char **dest, |
| 1388 | const char *var, const char *value) |
| 1389 | { |
| 1390 | if (!value) |
| 1391 | return config_error_nonbool(var); |
| 1392 | free(*dest); |
| 1393 | *dest = xstrdup(value); |
| 1394 | return 0; |
| 1395 | } |
| 1396 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1397 | static int populate_opts_cb(const char *key, const char *value, void *data) |
| 1398 | { |
| 1399 | struct replay_opts *opts = data; |
| 1400 | int error_flag = 1; |
| 1401 | |
| 1402 | if (!value) |
| 1403 | error_flag = 0; |
| 1404 | else if (!strcmp(key, "options.no-commit")) |
| 1405 | opts->no_commit = git_config_bool_or_int(key, value, &error_flag); |
| 1406 | else if (!strcmp(key, "options.edit")) |
| 1407 | opts->edit = git_config_bool_or_int(key, value, &error_flag); |
| 1408 | else if (!strcmp(key, "options.signoff")) |
| 1409 | opts->signoff = git_config_bool_or_int(key, value, &error_flag); |
| 1410 | else if (!strcmp(key, "options.record-origin")) |
| 1411 | opts->record_origin = git_config_bool_or_int(key, value, &error_flag); |
| 1412 | else if (!strcmp(key, "options.allow-ff")) |
| 1413 | opts->allow_ff = git_config_bool_or_int(key, value, &error_flag); |
| 1414 | else if (!strcmp(key, "options.mainline")) |
| 1415 | opts->mainline = git_config_int(key, value); |
| 1416 | else if (!strcmp(key, "options.strategy")) |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 1417 | git_config_string_dup(&opts->strategy, key, value); |
Nicolas Vigier | 3253553 | 2014-01-24 00:50:58 +0000 | [diff] [blame] | 1418 | else if (!strcmp(key, "options.gpg-sign")) |
Johannes Schindelin | 03a4e26 | 2016-10-21 14:24:13 +0200 | [diff] [blame] | 1419 | git_config_string_dup(&opts->gpg_sign, key, value); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1420 | else if (!strcmp(key, "options.strategy-option")) { |
| 1421 | ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc); |
| 1422 | opts->xopts[opts->xopts_nr++] = xstrdup(value); |
| 1423 | } else |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1424 | return error(_("invalid key: %s"), key); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1425 | |
| 1426 | if (!error_flag) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1427 | return error(_("invalid value for %s: %s"), key, value); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1428 | |
| 1429 | return 0; |
| 1430 | } |
| 1431 | |
Johannes Schindelin | ca6c6b4 | 2017-01-02 16:28:30 +0100 | [diff] [blame] | 1432 | static void read_strategy_opts(struct replay_opts *opts, struct strbuf *buf) |
| 1433 | { |
| 1434 | int i; |
| 1435 | |
| 1436 | strbuf_reset(buf); |
| 1437 | if (!read_oneliner(buf, rebase_path_strategy(), 0)) |
| 1438 | return; |
| 1439 | opts->strategy = strbuf_detach(buf, NULL); |
| 1440 | if (!read_oneliner(buf, rebase_path_strategy_opts(), 0)) |
| 1441 | return; |
| 1442 | |
| 1443 | opts->xopts_nr = split_cmdline(buf->buf, (const char ***)&opts->xopts); |
| 1444 | for (i = 0; i < opts->xopts_nr; i++) { |
| 1445 | const char *arg = opts->xopts[i]; |
| 1446 | |
| 1447 | skip_prefix(arg, "--", &arg); |
| 1448 | opts->xopts[i] = xstrdup(arg); |
| 1449 | } |
| 1450 | } |
| 1451 | |
Johannes Schindelin | 5adf9bd | 2016-10-14 15:17:16 +0200 | [diff] [blame] | 1452 | static int read_populate_opts(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1453 | { |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 1454 | if (is_rebase_i(opts)) { |
| 1455 | struct strbuf buf = STRBUF_INIT; |
| 1456 | |
| 1457 | if (read_oneliner(&buf, rebase_path_gpg_sign_opt(), 1)) { |
| 1458 | if (!starts_with(buf.buf, "-S")) |
| 1459 | strbuf_reset(&buf); |
| 1460 | else { |
| 1461 | free(opts->gpg_sign); |
| 1462 | opts->gpg_sign = xstrdup(buf.buf + 2); |
| 1463 | } |
| 1464 | } |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 1465 | |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 1466 | if (file_exists(rebase_path_verbose())) |
| 1467 | opts->verbose = 1; |
| 1468 | |
Johannes Schindelin | ca6c6b4 | 2017-01-02 16:28:30 +0100 | [diff] [blame] | 1469 | read_strategy_opts(opts, &buf); |
| 1470 | strbuf_release(&buf); |
| 1471 | |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 1472 | return 0; |
Johannes Schindelin | a1c7576 | 2016-10-21 14:25:12 +0200 | [diff] [blame] | 1473 | } |
Johannes Schindelin | b5a6704 | 2016-10-21 14:25:04 +0200 | [diff] [blame] | 1474 | |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1475 | if (!file_exists(git_path_opts_file())) |
Johannes Schindelin | 0d00da7 | 2016-09-09 16:37:27 +0200 | [diff] [blame] | 1476 | return 0; |
| 1477 | /* |
| 1478 | * The function git_parse_source(), called from git_config_from_file(), |
| 1479 | * may die() in case of a syntactically incorrect file. We do not care |
| 1480 | * about this case, though, because we wrote that file ourselves, so we |
| 1481 | * are pretty certain that it is syntactically correct. |
| 1482 | */ |
Johannes Schindelin | 5adf9bd | 2016-10-14 15:17:16 +0200 | [diff] [blame] | 1483 | if (git_config_from_file(populate_opts_cb, git_path_opts_file(), opts) < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1484 | return error(_("malformed options sheet: '%s'"), |
Johannes Schindelin | 0d00da7 | 2016-09-09 16:37:27 +0200 | [diff] [blame] | 1485 | git_path_opts_file()); |
| 1486 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1487 | } |
| 1488 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1489 | static int walk_revs_populate_todo(struct todo_list *todo_list, |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1490 | struct replay_opts *opts) |
| 1491 | { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1492 | enum todo_command command = opts->action == REPLAY_PICK ? |
| 1493 | TODO_PICK : TODO_REVERT; |
Johannes Schindelin | 414697a | 2017-01-02 16:27:15 +0100 | [diff] [blame] | 1494 | const char *command_string = todo_command_info[command].str; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1495 | struct commit *commit; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1496 | |
Johannes Schindelin | 34b0528 | 2016-09-09 16:37:15 +0200 | [diff] [blame] | 1497 | if (prepare_revs(opts)) |
| 1498 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1499 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1500 | while ((commit = get_revision(opts->revs))) { |
| 1501 | struct todo_item *item = append_new_todo(todo_list); |
| 1502 | const char *commit_buffer = get_commit_buffer(commit, NULL); |
| 1503 | const char *subject; |
| 1504 | int subject_len; |
| 1505 | |
| 1506 | item->command = command; |
| 1507 | item->commit = commit; |
Johannes Schindelin | c22f7df | 2016-10-21 14:25:00 +0200 | [diff] [blame] | 1508 | item->arg = NULL; |
| 1509 | item->arg_len = 0; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1510 | item->offset_in_buf = todo_list->buf.len; |
| 1511 | subject_len = find_commit_subject(commit_buffer, &subject); |
| 1512 | strbuf_addf(&todo_list->buf, "%s %s %.*s\n", command_string, |
| 1513 | short_commit_name(commit), subject_len, subject); |
| 1514 | unuse_commit_buffer(commit, commit_buffer); |
| 1515 | } |
Johannes Schindelin | 34b0528 | 2016-09-09 16:37:15 +0200 | [diff] [blame] | 1516 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1517 | } |
| 1518 | |
| 1519 | static int create_seq_dir(void) |
| 1520 | { |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1521 | if (file_exists(git_path_seq_dir())) { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1522 | error(_("a cherry-pick or revert is already in progress")); |
| 1523 | advise(_("try \"git cherry-pick (--continue | --quit | --abort)\"")); |
| 1524 | return -1; |
Johannes Schindelin | a70d8f8 | 2017-01-02 16:26:14 +0100 | [diff] [blame] | 1525 | } else if (mkdir(git_path_seq_dir(), 0777) < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1526 | return error_errno(_("could not create sequencer directory '%s'"), |
Johannes Schindelin | f6e82b0 | 2016-09-09 16:37:44 +0200 | [diff] [blame] | 1527 | git_path_seq_dir()); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1528 | return 0; |
| 1529 | } |
| 1530 | |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1531 | static int save_head(const char *head) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1532 | { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1533 | static struct lock_file head_lock; |
| 1534 | struct strbuf buf = STRBUF_INIT; |
| 1535 | int fd; |
| 1536 | |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1537 | fd = hold_lock_file_for_update(&head_lock, git_path_head_file(), 0); |
| 1538 | if (fd < 0) { |
| 1539 | rollback_lock_file(&head_lock); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1540 | return error_errno(_("could not lock HEAD")); |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1541 | } |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1542 | strbuf_addf(&buf, "%s\n", head); |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1543 | if (write_in_full(fd, buf.buf, buf.len) < 0) { |
| 1544 | rollback_lock_file(&head_lock); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1545 | return error_errno(_("could not write to '%s'"), |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1546 | git_path_head_file()); |
| 1547 | } |
| 1548 | if (commit_lock_file(&head_lock) < 0) { |
| 1549 | rollback_lock_file(&head_lock); |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1550 | return error(_("failed to finalize '%s'."), git_path_head_file()); |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 1551 | } |
| 1552 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1553 | } |
| 1554 | |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 1555 | static int rollback_is_safe(void) |
| 1556 | { |
| 1557 | struct strbuf sb = STRBUF_INIT; |
| 1558 | struct object_id expected_head, actual_head; |
| 1559 | |
| 1560 | if (strbuf_read_file(&sb, git_path_abort_safety_file(), 0) >= 0) { |
| 1561 | strbuf_trim(&sb); |
| 1562 | if (get_oid_hex(sb.buf, &expected_head)) { |
| 1563 | strbuf_release(&sb); |
| 1564 | die(_("could not parse %s"), git_path_abort_safety_file()); |
| 1565 | } |
| 1566 | strbuf_release(&sb); |
| 1567 | } |
| 1568 | else if (errno == ENOENT) |
| 1569 | oidclr(&expected_head); |
| 1570 | else |
| 1571 | die_errno(_("could not read '%s'"), git_path_abort_safety_file()); |
| 1572 | |
| 1573 | if (get_oid("HEAD", &actual_head)) |
| 1574 | oidclr(&actual_head); |
| 1575 | |
| 1576 | return !oidcmp(&actual_head, &expected_head); |
| 1577 | } |
| 1578 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1579 | static int reset_for_rollback(const unsigned char *sha1) |
| 1580 | { |
| 1581 | const char *argv[4]; /* reset --merge <arg> + NULL */ |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 1582 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1583 | argv[0] = "reset"; |
| 1584 | argv[1] = "--merge"; |
| 1585 | argv[2] = sha1_to_hex(sha1); |
| 1586 | argv[3] = NULL; |
| 1587 | return run_command_v_opt(argv, RUN_GIT_CMD); |
| 1588 | } |
| 1589 | |
| 1590 | static int rollback_single_pick(void) |
| 1591 | { |
| 1592 | unsigned char head_sha1[20]; |
| 1593 | |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1594 | if (!file_exists(git_path_cherry_pick_head()) && |
| 1595 | !file_exists(git_path_revert_head())) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1596 | return error(_("no cherry-pick or revert in progress")); |
Ronnie Sahlberg | 7695d11 | 2014-07-15 12:59:36 -0700 | [diff] [blame] | 1597 | if (read_ref_full("HEAD", 0, head_sha1, NULL)) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1598 | return error(_("cannot resolve HEAD")); |
| 1599 | if (is_null_sha1(head_sha1)) |
| 1600 | return error(_("cannot abort from a branch yet to be born")); |
| 1601 | return reset_for_rollback(head_sha1); |
| 1602 | } |
| 1603 | |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 1604 | int sequencer_rollback(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1605 | { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1606 | FILE *f; |
| 1607 | unsigned char sha1[20]; |
| 1608 | struct strbuf buf = STRBUF_INIT; |
| 1609 | |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1610 | f = fopen(git_path_head_file(), "r"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1611 | if (!f && errno == ENOENT) { |
| 1612 | /* |
| 1613 | * There is no multiple-cherry-pick in progress. |
| 1614 | * If CHERRY_PICK_HEAD or REVERT_HEAD indicates |
| 1615 | * a single-cherry-pick in progress, abort that. |
| 1616 | */ |
| 1617 | return rollback_single_pick(); |
| 1618 | } |
| 1619 | if (!f) |
Johannes Schindelin | f7ed195 | 2016-10-21 14:26:21 +0200 | [diff] [blame] | 1620 | return error_errno(_("cannot open '%s'"), git_path_head_file()); |
Junio C Hamano | 8f309ae | 2016-01-13 15:31:17 -0800 | [diff] [blame] | 1621 | if (strbuf_getline_lf(&buf, f)) { |
Johannes Schindelin | f7ed195 | 2016-10-21 14:26:21 +0200 | [diff] [blame] | 1622 | error(_("cannot read '%s': %s"), git_path_head_file(), |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1623 | ferror(f) ? strerror(errno) : _("unexpected end of file")); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1624 | fclose(f); |
| 1625 | goto fail; |
| 1626 | } |
| 1627 | fclose(f); |
| 1628 | if (get_sha1_hex(buf.buf, sha1) || buf.buf[40] != '\0') { |
| 1629 | error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"), |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1630 | git_path_head_file()); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1631 | goto fail; |
| 1632 | } |
Michael J Gruber | 0f974e2 | 2016-06-06 15:23:54 +0200 | [diff] [blame] | 1633 | if (is_null_sha1(sha1)) { |
| 1634 | error(_("cannot abort from a branch yet to be born")); |
| 1635 | goto fail; |
| 1636 | } |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 1637 | |
| 1638 | if (!rollback_is_safe()) { |
| 1639 | /* Do not error, just do not rollback */ |
| 1640 | warning(_("You seem to have moved HEAD. " |
| 1641 | "Not rewinding, check your HEAD!")); |
| 1642 | } else |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1643 | if (reset_for_rollback(sha1)) |
| 1644 | goto fail; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1645 | strbuf_release(&buf); |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 1646 | return sequencer_remove_state(opts); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1647 | fail: |
| 1648 | strbuf_release(&buf); |
| 1649 | return -1; |
| 1650 | } |
| 1651 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1652 | static int save_todo(struct todo_list *todo_list, struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1653 | { |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1654 | static struct lock_file todo_lock; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1655 | const char *todo_path = get_todo_path(opts); |
| 1656 | int next = todo_list->current, offset, fd; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1657 | |
Johannes Schindelin | 8458395 | 2017-01-02 16:26:28 +0100 | [diff] [blame] | 1658 | /* |
| 1659 | * rebase -i writes "git-rebase-todo" without the currently executing |
| 1660 | * command, appending it to "done" instead. |
| 1661 | */ |
| 1662 | if (is_rebase_i(opts)) |
| 1663 | next++; |
| 1664 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1665 | fd = hold_lock_file_for_update(&todo_lock, todo_path, 0); |
Johannes Schindelin | 221675d | 2016-09-09 16:37:50 +0200 | [diff] [blame] | 1666 | if (fd < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1667 | return error_errno(_("could not lock '%s'"), todo_path); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1668 | offset = next < todo_list->nr ? |
| 1669 | todo_list->items[next].offset_in_buf : todo_list->buf.len; |
| 1670 | if (write_in_full(fd, todo_list->buf.buf + offset, |
| 1671 | todo_list->buf.len - offset) < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1672 | return error_errno(_("could not write to '%s'"), todo_path); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1673 | if (commit_lock_file(&todo_lock) < 0) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 1674 | return error(_("failed to finalize '%s'."), todo_path); |
Johannes Schindelin | 1df6df0 | 2017-01-02 16:27:00 +0100 | [diff] [blame] | 1675 | |
| 1676 | if (is_rebase_i(opts)) { |
| 1677 | const char *done_path = rebase_path_done(); |
| 1678 | int fd = open(done_path, O_CREAT | O_WRONLY | O_APPEND, 0666); |
| 1679 | int prev_offset = !next ? 0 : |
| 1680 | todo_list->items[next - 1].offset_in_buf; |
| 1681 | |
| 1682 | if (fd >= 0 && offset > prev_offset && |
| 1683 | write_in_full(fd, todo_list->buf.buf + prev_offset, |
| 1684 | offset - prev_offset) < 0) { |
| 1685 | close(fd); |
| 1686 | return error_errno(_("could not write to '%s'"), |
| 1687 | done_path); |
| 1688 | } |
| 1689 | if (fd >= 0) |
| 1690 | close(fd); |
| 1691 | } |
Johannes Schindelin | 221675d | 2016-09-09 16:37:50 +0200 | [diff] [blame] | 1692 | return 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1693 | } |
| 1694 | |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1695 | static int save_opts(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1696 | { |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1697 | const char *opts_file = git_path_opts_file(); |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1698 | int res = 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1699 | |
| 1700 | if (opts->no_commit) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1701 | res |= git_config_set_in_file_gently(opts_file, "options.no-commit", "true"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1702 | if (opts->edit) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1703 | res |= git_config_set_in_file_gently(opts_file, "options.edit", "true"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1704 | if (opts->signoff) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1705 | res |= git_config_set_in_file_gently(opts_file, "options.signoff", "true"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1706 | if (opts->record_origin) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1707 | res |= git_config_set_in_file_gently(opts_file, "options.record-origin", "true"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1708 | if (opts->allow_ff) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1709 | res |= git_config_set_in_file_gently(opts_file, "options.allow-ff", "true"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1710 | if (opts->mainline) { |
| 1711 | struct strbuf buf = STRBUF_INIT; |
| 1712 | strbuf_addf(&buf, "%d", opts->mainline); |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1713 | res |= git_config_set_in_file_gently(opts_file, "options.mainline", buf.buf); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1714 | strbuf_release(&buf); |
| 1715 | } |
| 1716 | if (opts->strategy) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1717 | res |= git_config_set_in_file_gently(opts_file, "options.strategy", opts->strategy); |
Nicolas Vigier | 3253553 | 2014-01-24 00:50:58 +0000 | [diff] [blame] | 1718 | if (opts->gpg_sign) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1719 | res |= git_config_set_in_file_gently(opts_file, "options.gpg-sign", opts->gpg_sign); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1720 | if (opts->xopts) { |
| 1721 | int i; |
| 1722 | for (i = 0; i < opts->xopts_nr; i++) |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1723 | res |= git_config_set_multivar_in_file_gently(opts_file, |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1724 | "options.strategy-option", |
| 1725 | opts->xopts[i], "^$", 0); |
| 1726 | } |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 1727 | return res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1728 | } |
| 1729 | |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 1730 | static int make_patch(struct commit *commit, struct replay_opts *opts) |
| 1731 | { |
| 1732 | struct strbuf buf = STRBUF_INIT; |
| 1733 | struct rev_info log_tree_opt; |
| 1734 | const char *subject, *p; |
| 1735 | int res = 0; |
| 1736 | |
| 1737 | p = short_commit_name(commit); |
| 1738 | if (write_message(p, strlen(p), rebase_path_stopped_sha(), 1) < 0) |
| 1739 | return -1; |
| 1740 | |
| 1741 | strbuf_addf(&buf, "%s/patch", get_dir(opts)); |
| 1742 | memset(&log_tree_opt, 0, sizeof(log_tree_opt)); |
| 1743 | init_revisions(&log_tree_opt, NULL); |
| 1744 | log_tree_opt.abbrev = 0; |
| 1745 | log_tree_opt.diff = 1; |
| 1746 | log_tree_opt.diffopt.output_format = DIFF_FORMAT_PATCH; |
| 1747 | log_tree_opt.disable_stdin = 1; |
| 1748 | log_tree_opt.no_commit_id = 1; |
| 1749 | log_tree_opt.diffopt.file = fopen(buf.buf, "w"); |
| 1750 | log_tree_opt.diffopt.use_color = GIT_COLOR_NEVER; |
| 1751 | if (!log_tree_opt.diffopt.file) |
| 1752 | res |= error_errno(_("could not open '%s'"), buf.buf); |
| 1753 | else { |
| 1754 | res |= log_tree_commit(&log_tree_opt, commit); |
| 1755 | fclose(log_tree_opt.diffopt.file); |
| 1756 | } |
| 1757 | strbuf_reset(&buf); |
| 1758 | |
| 1759 | strbuf_addf(&buf, "%s/message", get_dir(opts)); |
| 1760 | if (!file_exists(buf.buf)) { |
| 1761 | const char *commit_buffer = get_commit_buffer(commit, NULL); |
| 1762 | find_commit_subject(commit_buffer, &subject); |
| 1763 | res |= write_message(subject, strlen(subject), buf.buf, 1); |
| 1764 | unuse_commit_buffer(commit, commit_buffer); |
| 1765 | } |
| 1766 | strbuf_release(&buf); |
| 1767 | |
| 1768 | return res; |
| 1769 | } |
| 1770 | |
| 1771 | static int intend_to_amend(void) |
| 1772 | { |
| 1773 | unsigned char head[20]; |
| 1774 | char *p; |
| 1775 | |
| 1776 | if (get_sha1("HEAD", head)) |
| 1777 | return error(_("cannot read HEAD")); |
| 1778 | |
| 1779 | p = sha1_to_hex(head); |
| 1780 | return write_message(p, strlen(p), rebase_path_amend(), 1); |
| 1781 | } |
| 1782 | |
| 1783 | static int error_with_patch(struct commit *commit, |
| 1784 | const char *subject, int subject_len, |
| 1785 | struct replay_opts *opts, int exit_code, int to_amend) |
| 1786 | { |
| 1787 | if (make_patch(commit, opts)) |
| 1788 | return -1; |
| 1789 | |
| 1790 | if (to_amend) { |
| 1791 | if (intend_to_amend()) |
| 1792 | return -1; |
| 1793 | |
| 1794 | fprintf(stderr, "You can amend the commit now, with\n" |
| 1795 | "\n" |
| 1796 | " git commit --amend %s\n" |
| 1797 | "\n" |
| 1798 | "Once you are satisfied with your changes, run\n" |
| 1799 | "\n" |
| 1800 | " git rebase --continue\n", gpg_sign_opt_quoted(opts)); |
| 1801 | } else if (exit_code) |
| 1802 | fprintf(stderr, "Could not apply %s... %.*s\n", |
| 1803 | short_commit_name(commit), subject_len, subject); |
| 1804 | |
| 1805 | return exit_code; |
| 1806 | } |
| 1807 | |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1808 | static int error_failed_squash(struct commit *commit, |
| 1809 | struct replay_opts *opts, int subject_len, const char *subject) |
| 1810 | { |
| 1811 | if (rename(rebase_path_squash_msg(), rebase_path_message())) |
| 1812 | return error(_("could not rename '%s' to '%s'"), |
| 1813 | rebase_path_squash_msg(), rebase_path_message()); |
| 1814 | unlink(rebase_path_fixup_msg()); |
| 1815 | unlink(git_path("MERGE_MSG")); |
| 1816 | if (copy_file(git_path("MERGE_MSG"), rebase_path_message(), 0666)) |
| 1817 | return error(_("could not copy '%s' to '%s'"), |
| 1818 | rebase_path_message(), git_path("MERGE_MSG")); |
| 1819 | return error_with_patch(commit, subject, subject_len, opts, 1, 0); |
| 1820 | } |
| 1821 | |
Johannes Schindelin | 311af52 | 2017-01-02 16:26:47 +0100 | [diff] [blame] | 1822 | static int do_exec(const char *command_line) |
| 1823 | { |
| 1824 | const char *child_argv[] = { NULL, NULL }; |
| 1825 | int dirty, status; |
| 1826 | |
| 1827 | fprintf(stderr, "Executing: %s\n", command_line); |
| 1828 | child_argv[0] = command_line; |
| 1829 | status = run_command_v_opt(child_argv, RUN_USING_SHELL); |
| 1830 | |
| 1831 | /* force re-reading of the cache */ |
| 1832 | if (discard_cache() < 0 || read_cache() < 0) |
| 1833 | return error(_("could not read index")); |
| 1834 | |
| 1835 | dirty = require_clean_work_tree("rebase", NULL, 1, 1); |
| 1836 | |
| 1837 | if (status) { |
| 1838 | warning(_("execution failed: %s\n%s" |
| 1839 | "You can fix the problem, and then run\n" |
| 1840 | "\n" |
| 1841 | " git rebase --continue\n" |
| 1842 | "\n"), |
| 1843 | command_line, |
| 1844 | dirty ? N_("and made changes to the index and/or the " |
| 1845 | "working tree\n") : ""); |
| 1846 | if (status == 127) |
| 1847 | /* command not found */ |
| 1848 | status = 1; |
| 1849 | } else if (dirty) { |
| 1850 | warning(_("execution succeeded: %s\nbut " |
| 1851 | "left changes to the index and/or the working tree\n" |
| 1852 | "Commit or stash your changes, and then run\n" |
| 1853 | "\n" |
| 1854 | " git rebase --continue\n" |
| 1855 | "\n"), command_line); |
| 1856 | status = 1; |
| 1857 | } |
| 1858 | |
| 1859 | return status; |
| 1860 | } |
| 1861 | |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1862 | static int is_final_fixup(struct todo_list *todo_list) |
| 1863 | { |
| 1864 | int i = todo_list->current; |
| 1865 | |
| 1866 | if (!is_fixup(todo_list->items[i].command)) |
| 1867 | return 0; |
| 1868 | |
| 1869 | while (++i < todo_list->nr) |
| 1870 | if (is_fixup(todo_list->items[i].command)) |
| 1871 | return 0; |
| 1872 | else if (!is_noop(todo_list->items[i].command)) |
| 1873 | break; |
| 1874 | return 1; |
| 1875 | } |
| 1876 | |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 1877 | static enum todo_command peek_command(struct todo_list *todo_list, int offset) |
| 1878 | { |
| 1879 | int i; |
| 1880 | |
| 1881 | for (i = todo_list->current + offset; i < todo_list->nr; i++) |
| 1882 | if (!is_noop(todo_list->items[i].command)) |
| 1883 | return todo_list->items[i].command; |
| 1884 | |
| 1885 | return -1; |
| 1886 | } |
| 1887 | |
Johannes Schindelin | 796c797 | 2017-01-02 16:28:27 +0100 | [diff] [blame] | 1888 | static int apply_autostash(struct replay_opts *opts) |
| 1889 | { |
| 1890 | struct strbuf stash_sha1 = STRBUF_INIT; |
| 1891 | struct child_process child = CHILD_PROCESS_INIT; |
| 1892 | int ret = 0; |
| 1893 | |
| 1894 | if (!read_oneliner(&stash_sha1, rebase_path_autostash(), 1)) { |
| 1895 | strbuf_release(&stash_sha1); |
| 1896 | return 0; |
| 1897 | } |
| 1898 | strbuf_trim(&stash_sha1); |
| 1899 | |
| 1900 | child.git_cmd = 1; |
| 1901 | argv_array_push(&child.args, "stash"); |
| 1902 | argv_array_push(&child.args, "apply"); |
| 1903 | argv_array_push(&child.args, stash_sha1.buf); |
| 1904 | if (!run_command(&child)) |
| 1905 | printf(_("Applied autostash.")); |
| 1906 | else { |
| 1907 | struct child_process store = CHILD_PROCESS_INIT; |
| 1908 | |
| 1909 | store.git_cmd = 1; |
| 1910 | argv_array_push(&store.args, "stash"); |
| 1911 | argv_array_push(&store.args, "store"); |
| 1912 | argv_array_push(&store.args, "-m"); |
| 1913 | argv_array_push(&store.args, "autostash"); |
| 1914 | argv_array_push(&store.args, "-q"); |
| 1915 | argv_array_push(&store.args, stash_sha1.buf); |
| 1916 | if (run_command(&store)) |
| 1917 | ret = error(_("cannot store %s"), stash_sha1.buf); |
| 1918 | else |
| 1919 | printf(_("Applying autostash resulted in conflicts.\n" |
| 1920 | "Your changes are safe in the stash.\n" |
| 1921 | "You can run \"git stash pop\" or" |
| 1922 | " \"git stash drop\" at any time.\n")); |
| 1923 | } |
| 1924 | |
| 1925 | strbuf_release(&stash_sha1); |
| 1926 | return ret; |
| 1927 | } |
| 1928 | |
Johannes Schindelin | 96e832a | 2017-01-02 16:28:09 +0100 | [diff] [blame] | 1929 | static const char *reflog_message(struct replay_opts *opts, |
| 1930 | const char *sub_action, const char *fmt, ...) |
| 1931 | { |
| 1932 | va_list ap; |
| 1933 | static struct strbuf buf = STRBUF_INIT; |
| 1934 | |
| 1935 | va_start(ap, fmt); |
| 1936 | strbuf_reset(&buf); |
| 1937 | strbuf_addstr(&buf, action_name(opts)); |
| 1938 | if (sub_action) |
| 1939 | strbuf_addf(&buf, " (%s)", sub_action); |
| 1940 | if (fmt) { |
| 1941 | strbuf_addstr(&buf, ": "); |
| 1942 | strbuf_vaddf(&buf, fmt, ap); |
| 1943 | } |
| 1944 | va_end(ap); |
| 1945 | |
| 1946 | return buf.buf; |
| 1947 | } |
| 1948 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1949 | static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1950 | { |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 1951 | int res = 0; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1952 | |
| 1953 | setenv(GIT_REFLOG_ACTION, action_name(opts), 0); |
| 1954 | if (opts->allow_ff) |
| 1955 | assert(!(opts->signoff || opts->no_commit || |
| 1956 | opts->record_origin || opts->edit)); |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 1957 | if (read_and_refresh_cache(opts)) |
| 1958 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 1959 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 1960 | while (todo_list->current < todo_list->nr) { |
| 1961 | struct todo_item *item = todo_list->items + todo_list->current; |
| 1962 | if (save_todo(todo_list, opts)) |
Johannes Schindelin | 221675d | 2016-09-09 16:37:50 +0200 | [diff] [blame] | 1963 | return -1; |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1964 | if (is_rebase_i(opts)) { |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 1965 | if (item->command != TODO_COMMENT) { |
| 1966 | FILE *f = fopen(rebase_path_msgnum(), "w"); |
| 1967 | |
| 1968 | todo_list->done_nr++; |
| 1969 | |
| 1970 | if (f) { |
| 1971 | fprintf(f, "%d\n", todo_list->done_nr); |
| 1972 | fclose(f); |
| 1973 | } |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1974 | fprintf(stderr, "Rebasing (%d/%d)%s", |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 1975 | todo_list->done_nr, |
Johannes Schindelin | 968492e | 2017-01-02 16:35:46 +0100 | [diff] [blame] | 1976 | todo_list->total_nr, |
| 1977 | opts->verbose ? "\n" : "\r"); |
Johannes Schindelin | ef80069 | 2017-01-02 16:36:20 +0100 | [diff] [blame] | 1978 | } |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1979 | unlink(rebase_path_message()); |
| 1980 | unlink(rebase_path_author_script()); |
| 1981 | unlink(rebase_path_stopped_sha()); |
| 1982 | unlink(rebase_path_amend()); |
| 1983 | } |
| 1984 | if (item->command <= TODO_SQUASH) { |
Johannes Schindelin | 8ab37ef | 2017-01-02 16:28:13 +0100 | [diff] [blame] | 1985 | if (is_rebase_i(opts)) |
| 1986 | setenv("GIT_REFLOG_ACTION", reflog_message(opts, |
| 1987 | command_to_string(item->command), NULL), |
| 1988 | 1); |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 1989 | res = do_pick_commit(item->command, item->commit, |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 1990 | opts, is_final_fixup(todo_list)); |
Johannes Schindelin | 9d7bf3c | 2017-01-02 16:28:34 +0100 | [diff] [blame] | 1991 | if (is_rebase_i(opts) && res < 0) { |
| 1992 | /* Reschedule */ |
| 1993 | todo_list->current--; |
| 1994 | if (save_todo(todo_list, opts)) |
| 1995 | return -1; |
| 1996 | } |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 1997 | if (item->command == TODO_EDIT) { |
| 1998 | struct commit *commit = item->commit; |
| 1999 | if (!res) |
| 2000 | warning(_("stopped at %s... %.*s"), |
| 2001 | short_commit_name(commit), |
| 2002 | item->arg_len, item->arg); |
| 2003 | return error_with_patch(commit, |
| 2004 | item->arg, item->arg_len, opts, res, |
| 2005 | !res); |
| 2006 | } |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2007 | if (is_rebase_i(opts) && !res) |
| 2008 | record_in_rewritten(&item->commit->object.oid, |
| 2009 | peek_command(todo_list, 1)); |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 2010 | if (res && is_fixup(item->command)) { |
| 2011 | if (res == 1) |
| 2012 | intend_to_amend(); |
| 2013 | return error_failed_squash(item->commit, opts, |
| 2014 | item->arg_len, item->arg); |
Johannes Schindelin | 4a5146f | 2017-01-02 16:27:57 +0100 | [diff] [blame] | 2015 | } else if (res && is_rebase_i(opts)) |
| 2016 | return res | error_with_patch(item->commit, |
Johannes Schindelin | 04efc8b | 2017-01-02 16:28:00 +0100 | [diff] [blame] | 2017 | item->arg, item->arg_len, opts, res, |
| 2018 | item->command == TODO_REWORD); |
Johannes Schindelin | 311af52 | 2017-01-02 16:26:47 +0100 | [diff] [blame] | 2019 | } else if (item->command == TODO_EXEC) { |
| 2020 | char *end_of_arg = (char *)(item->arg + item->arg_len); |
| 2021 | int saved = *end_of_arg; |
| 2022 | |
| 2023 | *end_of_arg = '\0'; |
| 2024 | res = do_exec(item->arg); |
| 2025 | *end_of_arg = saved; |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 2026 | } else if (!is_noop(item->command)) |
Johannes Schindelin | 25c4366 | 2017-01-02 16:26:38 +0100 | [diff] [blame] | 2027 | return error(_("unknown command %d"), item->command); |
| 2028 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2029 | todo_list->current++; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2030 | if (res) |
| 2031 | return res; |
| 2032 | } |
| 2033 | |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 2034 | if (is_rebase_i(opts)) { |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2035 | struct strbuf head_ref = STRBUF_INIT, buf = STRBUF_INIT; |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2036 | struct stat st; |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 2037 | |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 2038 | /* Stopped in the middle, as planned? */ |
| 2039 | if (todo_list->current < todo_list->nr) |
| 2040 | return 0; |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 2041 | |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2042 | if (read_oneliner(&head_ref, rebase_path_head_name(), 0) && |
| 2043 | starts_with(head_ref.buf, "refs/")) { |
Johannes Schindelin | 96e832a | 2017-01-02 16:28:09 +0100 | [diff] [blame] | 2044 | const char *msg; |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2045 | unsigned char head[20], orig[20]; |
| 2046 | int res; |
| 2047 | |
| 2048 | if (get_sha1("HEAD", head)) { |
| 2049 | res = error(_("cannot read HEAD")); |
| 2050 | cleanup_head_ref: |
| 2051 | strbuf_release(&head_ref); |
| 2052 | strbuf_release(&buf); |
| 2053 | return res; |
| 2054 | } |
| 2055 | if (!read_oneliner(&buf, rebase_path_orig_head(), 0) || |
| 2056 | get_sha1_hex(buf.buf, orig)) { |
| 2057 | res = error(_("could not read orig-head")); |
| 2058 | goto cleanup_head_ref; |
| 2059 | } |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2060 | if (!read_oneliner(&buf, rebase_path_onto(), 0)) { |
| 2061 | res = error(_("could not read 'onto'")); |
| 2062 | goto cleanup_head_ref; |
| 2063 | } |
Johannes Schindelin | 96e832a | 2017-01-02 16:28:09 +0100 | [diff] [blame] | 2064 | msg = reflog_message(opts, "finish", "%s onto %s", |
| 2065 | head_ref.buf, buf.buf); |
| 2066 | if (update_ref(msg, head_ref.buf, head, orig, |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2067 | REF_NODEREF, UPDATE_REFS_MSG_ON_ERR)) { |
| 2068 | res = error(_("could not update %s"), |
| 2069 | head_ref.buf); |
| 2070 | goto cleanup_head_ref; |
| 2071 | } |
Johannes Schindelin | 96e832a | 2017-01-02 16:28:09 +0100 | [diff] [blame] | 2072 | msg = reflog_message(opts, "finish", "returning to %s", |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2073 | head_ref.buf); |
Johannes Schindelin | 96e832a | 2017-01-02 16:28:09 +0100 | [diff] [blame] | 2074 | if (create_symref("HEAD", head_ref.buf, msg)) { |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2075 | res = error(_("could not update HEAD to %s"), |
| 2076 | head_ref.buf); |
| 2077 | goto cleanup_head_ref; |
| 2078 | } |
| 2079 | strbuf_reset(&buf); |
| 2080 | } |
| 2081 | |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 2082 | if (opts->verbose) { |
| 2083 | struct rev_info log_tree_opt; |
| 2084 | struct object_id orig, head; |
| 2085 | |
| 2086 | memset(&log_tree_opt, 0, sizeof(log_tree_opt)); |
| 2087 | init_revisions(&log_tree_opt, NULL); |
| 2088 | log_tree_opt.diff = 1; |
| 2089 | log_tree_opt.diffopt.output_format = |
| 2090 | DIFF_FORMAT_DIFFSTAT; |
| 2091 | log_tree_opt.disable_stdin = 1; |
| 2092 | |
| 2093 | if (read_oneliner(&buf, rebase_path_orig_head(), 0) && |
| 2094 | !get_sha1(buf.buf, orig.hash) && |
| 2095 | !get_sha1("HEAD", head.hash)) { |
| 2096 | diff_tree_sha1(orig.hash, head.hash, |
| 2097 | "", &log_tree_opt.diffopt); |
| 2098 | log_tree_diff_flush(&log_tree_opt); |
| 2099 | } |
| 2100 | } |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2101 | flush_rewritten_pending(); |
| 2102 | if (!stat(rebase_path_rewritten_list(), &st) && |
| 2103 | st.st_size > 0) { |
| 2104 | struct child_process child = CHILD_PROCESS_INIT; |
Johannes Schindelin | 7951604 | 2017-01-02 16:28:23 +0100 | [diff] [blame] | 2105 | const char *post_rewrite_hook = |
| 2106 | find_hook("post-rewrite"); |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2107 | |
| 2108 | child.in = open(rebase_path_rewritten_list(), O_RDONLY); |
| 2109 | child.git_cmd = 1; |
| 2110 | argv_array_push(&child.args, "notes"); |
| 2111 | argv_array_push(&child.args, "copy"); |
| 2112 | argv_array_push(&child.args, "--for-rewrite=rebase"); |
| 2113 | /* we don't care if this copying failed */ |
| 2114 | run_command(&child); |
Johannes Schindelin | 7951604 | 2017-01-02 16:28:23 +0100 | [diff] [blame] | 2115 | |
| 2116 | if (post_rewrite_hook) { |
| 2117 | struct child_process hook = CHILD_PROCESS_INIT; |
| 2118 | |
| 2119 | hook.in = open(rebase_path_rewritten_list(), |
| 2120 | O_RDONLY); |
| 2121 | hook.stdout_to_stderr = 1; |
| 2122 | argv_array_push(&hook.args, post_rewrite_hook); |
| 2123 | argv_array_push(&hook.args, "rebase"); |
| 2124 | /* we don't care if this hook failed */ |
| 2125 | run_command(&hook); |
| 2126 | } |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2127 | } |
Johannes Schindelin | 796c797 | 2017-01-02 16:28:27 +0100 | [diff] [blame] | 2128 | apply_autostash(opts); |
Johannes Schindelin | 25cb8df | 2017-01-02 16:28:16 +0100 | [diff] [blame] | 2129 | |
Johannes Schindelin | 5da4966 | 2017-01-02 16:36:25 +0100 | [diff] [blame] | 2130 | fprintf(stderr, "Successfully rebased and updated %s.\n", |
| 2131 | head_ref.buf); |
| 2132 | |
Johannes Schindelin | 556907f | 2017-01-02 16:26:53 +0100 | [diff] [blame] | 2133 | strbuf_release(&buf); |
Johannes Schindelin | 4b83ce9 | 2017-01-02 16:27:53 +0100 | [diff] [blame] | 2134 | strbuf_release(&head_ref); |
Johannes Schindelin | 56dc3ab | 2017-01-02 16:26:43 +0100 | [diff] [blame] | 2135 | } |
| 2136 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2137 | /* |
| 2138 | * Sequence of picks finished successfully; cleanup by |
| 2139 | * removing the .git/sequencer directory |
| 2140 | */ |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 2141 | return sequencer_remove_state(opts); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | static int continue_single_pick(void) |
| 2145 | { |
| 2146 | const char *argv[] = { "commit", NULL }; |
| 2147 | |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 2148 | if (!file_exists(git_path_cherry_pick_head()) && |
| 2149 | !file_exists(git_path_revert_head())) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2150 | return error(_("no cherry-pick or revert in progress")); |
| 2151 | return run_command_v_opt(argv, RUN_GIT_CMD); |
| 2152 | } |
| 2153 | |
Johannes Schindelin | 9d93ccd | 2017-01-02 16:27:21 +0100 | [diff] [blame] | 2154 | static int commit_staged_changes(struct replay_opts *opts) |
| 2155 | { |
| 2156 | int amend = 0; |
| 2157 | |
| 2158 | if (has_unstaged_changes(1)) |
| 2159 | return error(_("cannot rebase: You have unstaged changes.")); |
Johannes Schindelin | 5263220 | 2017-01-02 16:27:25 +0100 | [diff] [blame] | 2160 | if (!has_uncommitted_changes(0)) { |
| 2161 | const char *cherry_pick_head = git_path("CHERRY_PICK_HEAD"); |
| 2162 | |
| 2163 | if (file_exists(cherry_pick_head) && unlink(cherry_pick_head)) |
| 2164 | return error(_("could not remove CHERRY_PICK_HEAD")); |
Johannes Schindelin | 9d93ccd | 2017-01-02 16:27:21 +0100 | [diff] [blame] | 2165 | return 0; |
Johannes Schindelin | 5263220 | 2017-01-02 16:27:25 +0100 | [diff] [blame] | 2166 | } |
Johannes Schindelin | 9d93ccd | 2017-01-02 16:27:21 +0100 | [diff] [blame] | 2167 | |
| 2168 | if (file_exists(rebase_path_amend())) { |
| 2169 | struct strbuf rev = STRBUF_INIT; |
| 2170 | unsigned char head[20], to_amend[20]; |
| 2171 | |
| 2172 | if (get_sha1("HEAD", head)) |
| 2173 | return error(_("cannot amend non-existing commit")); |
| 2174 | if (!read_oneliner(&rev, rebase_path_amend(), 0)) |
| 2175 | return error(_("invalid file: '%s'"), rebase_path_amend()); |
| 2176 | if (get_sha1_hex(rev.buf, to_amend)) |
| 2177 | return error(_("invalid contents: '%s'"), |
| 2178 | rebase_path_amend()); |
| 2179 | if (hashcmp(head, to_amend)) |
| 2180 | return error(_("\nYou have uncommitted changes in your " |
| 2181 | "working tree. Please, commit them\n" |
| 2182 | "first and then run 'git rebase " |
| 2183 | "--continue' again.")); |
| 2184 | |
| 2185 | strbuf_release(&rev); |
| 2186 | amend = 1; |
| 2187 | } |
| 2188 | |
| 2189 | if (run_git_commit(rebase_path_message(), opts, 1, 1, amend, 0)) |
| 2190 | return error(_("could not commit staged changes.")); |
| 2191 | unlink(rebase_path_amend()); |
| 2192 | return 0; |
| 2193 | } |
| 2194 | |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 2195 | int sequencer_continue(struct replay_opts *opts) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2196 | { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2197 | struct todo_list todo_list = TODO_LIST_INIT; |
| 2198 | int res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2199 | |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 2200 | if (read_and_refresh_cache(opts)) |
| 2201 | return -1; |
| 2202 | |
Johannes Schindelin | 9d93ccd | 2017-01-02 16:27:21 +0100 | [diff] [blame] | 2203 | if (is_rebase_i(opts)) { |
| 2204 | if (commit_staged_changes(opts)) |
| 2205 | return -1; |
Johannes Schindelin | 4258a6d | 2017-01-02 16:27:30 +0100 | [diff] [blame] | 2206 | } else if (!file_exists(get_todo_path(opts))) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2207 | return continue_single_pick(); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2208 | if (read_populate_opts(opts)) |
Johannes Schindelin | 0ae42a0 | 2016-09-09 16:37:24 +0200 | [diff] [blame] | 2209 | return -1; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2210 | if ((res = read_populate_todo(&todo_list, opts))) |
| 2211 | goto release_todo_list; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2212 | |
Johannes Schindelin | 4258a6d | 2017-01-02 16:27:30 +0100 | [diff] [blame] | 2213 | if (!is_rebase_i(opts)) { |
| 2214 | /* Verify that the conflict has been resolved */ |
| 2215 | if (file_exists(git_path_cherry_pick_head()) || |
| 2216 | file_exists(git_path_revert_head())) { |
| 2217 | res = continue_single_pick(); |
| 2218 | if (res) |
| 2219 | goto release_todo_list; |
| 2220 | } |
| 2221 | if (index_differs_from("HEAD", 0, 0)) { |
| 2222 | res = error_dirty_index(opts); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2223 | goto release_todo_list; |
Johannes Schindelin | 4258a6d | 2017-01-02 16:27:30 +0100 | [diff] [blame] | 2224 | } |
| 2225 | todo_list.current++; |
Johannes Schindelin | ca98c6d | 2017-01-02 16:28:20 +0100 | [diff] [blame] | 2226 | } else if (file_exists(rebase_path_stopped_sha())) { |
| 2227 | struct strbuf buf = STRBUF_INIT; |
| 2228 | struct object_id oid; |
| 2229 | |
| 2230 | if (read_oneliner(&buf, rebase_path_stopped_sha(), 1) && |
| 2231 | !get_sha1_committish(buf.buf, oid.hash)) |
| 2232 | record_in_rewritten(&oid, peek_command(&todo_list, 0)); |
| 2233 | strbuf_release(&buf); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2234 | } |
Johannes Schindelin | 4258a6d | 2017-01-02 16:27:30 +0100 | [diff] [blame] | 2235 | |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2236 | res = pick_commits(&todo_list, opts); |
| 2237 | release_todo_list: |
| 2238 | todo_list_release(&todo_list); |
| 2239 | return res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2240 | } |
| 2241 | |
| 2242 | static int single_pick(struct commit *cmit, struct replay_opts *opts) |
| 2243 | { |
| 2244 | setenv(GIT_REFLOG_ACTION, action_name(opts), 0); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2245 | return do_pick_commit(opts->action == REPLAY_PICK ? |
Johannes Schindelin | 6e98de7 | 2017-01-02 16:27:07 +0100 | [diff] [blame] | 2246 | TODO_PICK : TODO_REVERT, cmit, opts, 0); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2247 | } |
| 2248 | |
| 2249 | int sequencer_pick_revisions(struct replay_opts *opts) |
| 2250 | { |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2251 | struct todo_list todo_list = TODO_LIST_INIT; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2252 | unsigned char sha1[20]; |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2253 | int i, res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2254 | |
Johannes Schindelin | 2863584 | 2016-10-21 14:24:55 +0200 | [diff] [blame] | 2255 | assert(opts->revs); |
Johannes Schindelin | 0d9c6dc | 2016-09-09 16:37:21 +0200 | [diff] [blame] | 2256 | if (read_and_refresh_cache(opts)) |
| 2257 | return -1; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2258 | |
Miklos Vajna | 21246db | 2013-04-11 15:06:52 +0200 | [diff] [blame] | 2259 | for (i = 0; i < opts->revs->pending.nr; i++) { |
| 2260 | unsigned char sha1[20]; |
| 2261 | const char *name = opts->revs->pending.objects[i].name; |
| 2262 | |
| 2263 | /* This happens when using --stdin. */ |
| 2264 | if (!strlen(name)) |
| 2265 | continue; |
| 2266 | |
| 2267 | if (!get_sha1(name, sha1)) { |
Junio C Hamano | 7c0b0d8 | 2013-05-09 13:27:49 -0700 | [diff] [blame] | 2268 | if (!lookup_commit_reference_gently(sha1, 1)) { |
| 2269 | enum object_type type = sha1_object_info(sha1, NULL); |
Johannes Schindelin | b9b946d | 2016-08-26 15:47:10 +0200 | [diff] [blame] | 2270 | return error(_("%s: can't cherry-pick a %s"), |
| 2271 | name, typename(type)); |
Junio C Hamano | 7c0b0d8 | 2013-05-09 13:27:49 -0700 | [diff] [blame] | 2272 | } |
Miklos Vajna | 21246db | 2013-04-11 15:06:52 +0200 | [diff] [blame] | 2273 | } else |
Johannes Schindelin | b9b946d | 2016-08-26 15:47:10 +0200 | [diff] [blame] | 2274 | return error(_("%s: bad revision"), name); |
Miklos Vajna | 21246db | 2013-04-11 15:06:52 +0200 | [diff] [blame] | 2275 | } |
| 2276 | |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2277 | /* |
| 2278 | * If we were called as "git cherry-pick <commit>", just |
| 2279 | * cherry-pick/revert it, set CHERRY_PICK_HEAD / |
| 2280 | * REVERT_HEAD, and don't touch the sequencer state. |
| 2281 | * This means it is possible to cherry-pick in the middle |
| 2282 | * of a cherry-pick sequence. |
| 2283 | */ |
| 2284 | if (opts->revs->cmdline.nr == 1 && |
| 2285 | opts->revs->cmdline.rev->whence == REV_CMD_REV && |
| 2286 | opts->revs->no_walk && |
| 2287 | !opts->revs->cmdline.rev->flags) { |
| 2288 | struct commit *cmit; |
| 2289 | if (prepare_revision_walk(opts->revs)) |
Johannes Schindelin | b9b946d | 2016-08-26 15:47:10 +0200 | [diff] [blame] | 2290 | return error(_("revision walk setup failed")); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2291 | cmit = get_revision(opts->revs); |
| 2292 | if (!cmit || get_revision(opts->revs)) |
Johannes Schindelin | b9b946d | 2016-08-26 15:47:10 +0200 | [diff] [blame] | 2293 | return error("BUG: expected exactly one commit from walk"); |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2294 | return single_pick(cmit, opts); |
| 2295 | } |
| 2296 | |
| 2297 | /* |
| 2298 | * Start a new cherry-pick/ revert sequence; but |
| 2299 | * first, make sure that an existing one isn't in |
| 2300 | * progress |
| 2301 | */ |
| 2302 | |
Johannes Schindelin | 34b0528 | 2016-09-09 16:37:15 +0200 | [diff] [blame] | 2303 | if (walk_revs_populate_todo(&todo_list, opts) || |
| 2304 | create_seq_dir() < 0) |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2305 | return -1; |
Michael J Gruber | 0f974e2 | 2016-06-06 15:23:54 +0200 | [diff] [blame] | 2306 | if (get_sha1("HEAD", sha1) && (opts->action == REPLAY_REVERT)) |
Johannes Schindelin | 93b3df6 | 2016-10-21 14:26:25 +0200 | [diff] [blame] | 2307 | return error(_("can't revert as initial commit")); |
Johannes Schindelin | 311fd39 | 2016-09-09 16:37:47 +0200 | [diff] [blame] | 2308 | if (save_head(sha1_to_hex(sha1))) |
| 2309 | return -1; |
Johannes Schindelin | 88d5a27 | 2016-09-09 16:37:53 +0200 | [diff] [blame] | 2310 | if (save_opts(opts)) |
| 2311 | return -1; |
Stephan Beyer | 1e41229 | 2016-12-07 22:51:32 +0100 | [diff] [blame] | 2312 | update_abort_safety_file(); |
Johannes Schindelin | 004fefa | 2016-10-21 14:24:41 +0200 | [diff] [blame] | 2313 | res = pick_commits(&todo_list, opts); |
| 2314 | todo_list_release(&todo_list); |
| 2315 | return res; |
Ramkumar Ramachandra | 043a449 | 2012-01-11 23:45:57 +0530 | [diff] [blame] | 2316 | } |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2317 | |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 2318 | void append_signoff(struct strbuf *msgbuf, int ignore_footer, unsigned flag) |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2319 | { |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 2320 | unsigned no_dup_sob = flag & APPEND_SIGNOFF_DEDUP; |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2321 | struct strbuf sob = STRBUF_INIT; |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 2322 | int has_footer; |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2323 | |
| 2324 | strbuf_addstr(&sob, sign_off_header); |
| 2325 | strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"), |
| 2326 | getenv("GIT_COMMITTER_EMAIL"))); |
| 2327 | strbuf_addch(&sob, '\n'); |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 2328 | |
| 2329 | /* |
| 2330 | * If the whole message buffer is equal to the sob, pretend that we |
| 2331 | * found a conforming footer with a matching sob |
| 2332 | */ |
| 2333 | if (msgbuf->len - ignore_footer == sob.len && |
| 2334 | !strncmp(msgbuf->buf, sob.buf, sob.len)) |
| 2335 | has_footer = 3; |
| 2336 | else |
| 2337 | has_footer = has_conforming_footer(msgbuf, &sob, ignore_footer); |
| 2338 | |
Brandon Casey | 33f2f9a | 2013-02-12 02:33:42 -0800 | [diff] [blame] | 2339 | if (!has_footer) { |
| 2340 | const char *append_newlines = NULL; |
| 2341 | size_t len = msgbuf->len - ignore_footer; |
| 2342 | |
Brandon Casey | 8c613fd | 2013-02-22 14:05:27 -0800 | [diff] [blame] | 2343 | if (!len) { |
| 2344 | /* |
| 2345 | * The buffer is completely empty. Leave foom for |
| 2346 | * the title and body to be filled in by the user. |
| 2347 | */ |
Brandon Casey | 33f2f9a | 2013-02-12 02:33:42 -0800 | [diff] [blame] | 2348 | append_newlines = "\n\n"; |
Brandon Casey | 8c613fd | 2013-02-22 14:05:27 -0800 | [diff] [blame] | 2349 | } else if (msgbuf->buf[len - 1] != '\n') { |
| 2350 | /* |
| 2351 | * Incomplete line. Complete the line and add a |
| 2352 | * blank one so that there is an empty line between |
| 2353 | * the message body and the sob. |
| 2354 | */ |
| 2355 | append_newlines = "\n\n"; |
| 2356 | } else if (len == 1) { |
| 2357 | /* |
| 2358 | * Buffer contains a single newline. Add another |
| 2359 | * so that we leave room for the title and body. |
| 2360 | */ |
Brandon Casey | 33f2f9a | 2013-02-12 02:33:42 -0800 | [diff] [blame] | 2361 | append_newlines = "\n"; |
Brandon Casey | 8c613fd | 2013-02-22 14:05:27 -0800 | [diff] [blame] | 2362 | } else if (msgbuf->buf[len - 2] != '\n') { |
| 2363 | /* |
| 2364 | * Buffer ends with a single newline. Add another |
| 2365 | * so that there is an empty line between the message |
| 2366 | * body and the sob. |
| 2367 | */ |
| 2368 | append_newlines = "\n"; |
| 2369 | } /* else, the buffer already ends with two newlines. */ |
Brandon Casey | 33f2f9a | 2013-02-12 02:33:42 -0800 | [diff] [blame] | 2370 | |
| 2371 | if (append_newlines) |
| 2372 | strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0, |
| 2373 | append_newlines, strlen(append_newlines)); |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2374 | } |
Brandon Casey | bab4d10 | 2013-02-12 02:17:35 -0800 | [diff] [blame] | 2375 | |
| 2376 | if (has_footer != 3 && (!no_dup_sob || has_footer != 2)) |
| 2377 | strbuf_splice(msgbuf, msgbuf->len - ignore_footer, 0, |
| 2378 | sob.buf, sob.len); |
| 2379 | |
Miklos Vajna | 5ed75e2 | 2012-09-14 08:52:03 +0200 | [diff] [blame] | 2380 | strbuf_release(&sob); |
| 2381 | } |