7 #include "run-command.h"
10 #include "parse-options.h"
11 #include "cache-tree.h"
15 #include "merge-recursive.h"
18 * This implements the builtins revert and cherry-pick.
20 * Copyright (c) 2007 Johannes E. Schindelin
22 * Based on git-revert.sh, which is
24 * Copyright (c) 2005 Linus Torvalds
25 * Copyright (c) 2005 Junio C Hamano
28 static const char * const revert_usage
[] = {
29 "git revert [options] <commit-ish>",
33 static const char * const cherry_pick_usage
[] = {
34 "git cherry-pick [options] <commit-ish>",
38 static int edit
, no_replay
, no_commit
, mainline
, signoff
;
39 static enum { REVERT
, CHERRY_PICK
} action
;
40 static struct commit
*commit
;
41 static const char *commit_name
;
42 static int allow_rerere_auto
;
44 static const char *me
;
46 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
48 static void parse_args(int argc
, const char **argv
)
50 const char * const * usage_str
=
51 action
== REVERT
? revert_usage
: cherry_pick_usage
;
52 unsigned char sha1
[20];
54 struct option options
[] = {
55 OPT_BOOLEAN('n', "no-commit", &no_commit
, "don't automatically commit"),
56 OPT_BOOLEAN('e', "edit", &edit
, "edit the commit message"),
57 OPT_BOOLEAN('x', NULL
, &no_replay
, "append commit name when cherry-picking"),
58 OPT_BOOLEAN('r', NULL
, &noop
, "no-op (backward compatibility)"),
59 OPT_BOOLEAN('s', "signoff", &signoff
, "add Signed-off-by:"),
60 OPT_INTEGER('m', "mainline", &mainline
, "parent number"),
61 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
65 if (parse_options(argc
, argv
, NULL
, options
, usage_str
, 0) != 1)
66 usage_with_options(usage_str
, options
);
68 commit_name
= argv
[0];
69 if (get_sha1(commit_name
, sha1
))
70 die ("Cannot find '%s'", commit_name
);
71 commit
= lookup_commit_reference(sha1
);
76 static char *get_oneline(const char *message
)
79 const char *p
= message
, *abbrev
, *eol
;
80 int abbrev_len
, oneline_len
;
83 die ("Could not read commit message of %s",
84 sha1_to_hex(commit
->object
.sha1
));
85 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
90 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
94 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
95 abbrev_len
= strlen(abbrev
);
96 oneline_len
= eol
- p
;
97 result
= xmalloc(abbrev_len
+ 5 + oneline_len
);
98 memcpy(result
, abbrev
, abbrev_len
);
99 memcpy(result
+ abbrev_len
, "... ", 4);
100 memcpy(result
+ abbrev_len
+ 4, p
, oneline_len
);
101 result
[abbrev_len
+ 4 + oneline_len
] = '\0';
105 static char *get_encoding(const char *message
)
107 const char *p
= message
, *eol
;
110 die ("Could not read commit message of %s",
111 sha1_to_hex(commit
->object
.sha1
));
112 while (*p
&& *p
!= '\n') {
113 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
115 if (!prefixcmp(p
, "encoding ")) {
116 char *result
= xmalloc(eol
- 8 - p
);
117 strlcpy(result
, p
+ 9, eol
- 8 - p
);
127 static struct lock_file msg_file
;
130 static void add_to_msg(const char *string
)
132 int len
= strlen(string
);
133 if (write_in_full(msg_fd
, string
, len
) < 0)
134 die_errno ("Could not write to MERGE_MSG");
137 static void add_message_to_msg(const char *message
)
139 const char *p
= message
;
140 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
144 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
151 static void set_author_ident_env(const char *message
)
153 const char *p
= message
;
155 die ("Could not read commit message of %s",
156 sha1_to_hex(commit
->object
.sha1
));
157 while (*p
&& *p
!= '\n') {
160 for (eol
= p
; *eol
&& *eol
!= '\n'; eol
++)
162 if (!prefixcmp(p
, "author ")) {
163 char *line
, *pend
, *email
, *timestamp
;
166 line
= xmemdupz(p
, eol
- p
);
167 email
= strchr(line
, '<');
169 die ("Could not extract author email from %s",
170 sha1_to_hex(commit
->object
.sha1
));
174 for (pend
= email
; pend
!= line
+ 1 &&
175 isspace(pend
[-1]); pend
--);
179 timestamp
= strchr(email
, '>');
181 die ("Could not extract author time from %s",
182 sha1_to_hex(commit
->object
.sha1
));
184 for (timestamp
++; *timestamp
&& isspace(*timestamp
);
187 setenv("GIT_AUTHOR_NAME", line
, 1);
188 setenv("GIT_AUTHOR_EMAIL", email
, 1);
189 setenv("GIT_AUTHOR_DATE", timestamp
, 1);
197 die ("No author information found in %s",
198 sha1_to_hex(commit
->object
.sha1
));
201 static char *help_msg(const char *name
)
203 struct strbuf helpbuf
= STRBUF_INIT
;
204 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
209 strbuf_addstr(&helpbuf
, " After resolving the conflicts,\n"
210 "mark the corrected paths with 'git add <paths>' or 'git rm <paths>'\n"
211 "and commit the result");
213 if (action
== CHERRY_PICK
) {
214 strbuf_addf(&helpbuf
, " with: \n"
216 " git commit -c %s\n",
220 strbuf_addch(&helpbuf
, '.');
221 return strbuf_detach(&helpbuf
, NULL
);
224 static struct tree
*empty_tree(void)
226 struct tree
*tree
= xcalloc(1, sizeof(struct tree
));
228 tree
->object
.parsed
= 1;
229 tree
->object
.type
= OBJ_TREE
;
230 pretend_sha1_file(NULL
, 0, OBJ_TREE
, tree
->object
.sha1
);
234 static NORETURN
void die_dirty_index(const char *me
)
236 if (read_cache_unmerged()) {
237 die_resolve_conflict(me
);
239 if (advice_commit_before_merge
)
240 die("Your local changes would be overwritten by %s.\n"
241 "Please, commit your changes or stash them to proceed.", me
);
243 die("Your local changes would be overwritten by %s.\n", me
);
247 static int revert_or_cherry_pick(int argc
, const char **argv
)
249 unsigned char head
[20];
250 struct commit
*base
, *next
, *parent
;
251 int i
, index_fd
, clean
;
252 char *oneline
, *reencoded_message
= NULL
;
253 const char *message
, *encoding
;
254 char *defmsg
= git_pathdup("MERGE_MSG");
255 struct merge_options o
;
256 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
257 static struct lock_file index_lock
;
259 git_config(git_default_config
, NULL
);
260 me
= action
== REVERT
? "revert" : "cherry-pick";
261 setenv(GIT_REFLOG_ACTION
, me
, 0);
262 parse_args(argc
, argv
);
264 /* this is copied from the shell script, but it's never triggered... */
265 if (action
== REVERT
&& !no_replay
)
266 die("revert is incompatible with replay");
268 if (read_cache() < 0)
269 die("git %s: failed to read the index", me
);
272 * We do not intend to commit immediately. We just want to
273 * merge the differences in, so let's compute the tree
274 * that represents the "current" state for merge-recursive
277 if (write_cache_as_tree(head
, 0, NULL
))
278 die ("Your index file is unmerged.");
280 if (get_sha1("HEAD", head
))
281 die ("You do not have a valid HEAD");
282 if (index_differs_from("HEAD", 0))
287 index_fd
= hold_locked_index(&index_lock
, 1);
289 if (!commit
->parents
) {
290 if (action
== REVERT
)
291 die ("Cannot revert a root commit");
294 else if (commit
->parents
->next
) {
295 /* Reverting or cherry-picking a merge commit */
297 struct commit_list
*p
;
300 die("Commit %s is a merge but no -m option was given.",
301 sha1_to_hex(commit
->object
.sha1
));
303 for (cnt
= 1, p
= commit
->parents
;
304 cnt
!= mainline
&& p
;
307 if (cnt
!= mainline
|| !p
)
308 die("Commit %s does not have parent %d",
309 sha1_to_hex(commit
->object
.sha1
), mainline
);
311 } else if (0 < mainline
)
312 die("Mainline was specified but commit %s is not a merge.",
313 sha1_to_hex(commit
->object
.sha1
));
315 parent
= commit
->parents
->item
;
317 if (!(message
= commit
->buffer
))
318 die ("Cannot get commit message for %s",
319 sha1_to_hex(commit
->object
.sha1
));
321 if (parent
&& parse_commit(parent
) < 0)
322 die("%s: cannot parse parent commit %s",
323 me
, sha1_to_hex(parent
->object
.sha1
));
326 * "commit" is an existing commit. We would want to apply
327 * the difference it introduces since its first parent "prev"
328 * on top of the current HEAD if we are cherry-pick. Or the
329 * reverse of it if we are revert.
332 msg_fd
= hold_lock_file_for_update(&msg_file
, defmsg
,
335 encoding
= get_encoding(message
);
338 if (!git_commit_encoding
)
339 git_commit_encoding
= "UTF-8";
340 if ((reencoded_message
= reencode_string(message
,
341 git_commit_encoding
, encoding
)))
342 message
= reencoded_message
;
344 oneline
= get_oneline(message
);
346 if (action
== REVERT
) {
347 char *oneline_body
= strchr(oneline
, ' ');
351 add_to_msg("Revert \"");
352 add_to_msg(oneline_body
+ 1);
353 add_to_msg("\"\n\nThis reverts commit ");
354 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
356 if (commit
->parents
->next
) {
357 add_to_msg(", reversing\nchanges made to ");
358 add_to_msg(sha1_to_hex(parent
->object
.sha1
));
364 set_author_ident_env(message
);
365 add_message_to_msg(message
);
367 add_to_msg("(cherry picked from commit ");
368 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
374 init_merge_options(&o
);
378 head_tree
= parse_tree_indirect(head
);
379 next_tree
= next
? next
->tree
: empty_tree();
380 base_tree
= base
? base
->tree
: empty_tree();
382 clean
= merge_trees(&o
,
384 next_tree
, base_tree
, &result
);
386 if (active_cache_changed
&&
387 (write_cache(index_fd
, active_cache
, active_nr
) ||
388 commit_locked_index(&index_lock
)))
389 die("%s: Unable to write new index file", me
);
390 rollback_lock_file(&index_lock
);
393 add_to_msg("\nConflicts:\n\n");
394 for (i
= 0; i
< active_nr
;) {
395 struct cache_entry
*ce
= active_cache
[i
++];
398 add_to_msg(ce
->name
);
400 while (i
< active_nr
&& !strcmp(ce
->name
,
401 active_cache
[i
]->name
))
405 if (commit_lock_file(&msg_file
) < 0)
406 die ("Error wrapping up %s", defmsg
);
407 fprintf(stderr
, "Automatic %s failed.%s\n",
408 me
, help_msg(commit_name
));
409 rerere(allow_rerere_auto
);
412 if (commit_lock_file(&msg_file
) < 0)
413 die ("Error wrapping up %s", defmsg
);
414 fprintf(stderr
, "Finished one %s.\n", me
);
418 * If we are cherry-pick, and if the merge did not result in
419 * hand-editing, we will hit this commit and inherit the original
420 * author date and name.
421 * If we are revert, or if our cherry-pick results in a hand merge,
422 * we had better say that the current user is responsible for that.
426 /* 6 is max possible length of our args array including NULL */
429 args
[i
++] = "commit";
438 return execv_git_cmd(args
);
440 free(reencoded_message
);
446 int cmd_revert(int argc
, const char **argv
, const char *prefix
)
452 return revert_or_cherry_pick(argc
, argv
);
455 int cmd_cherry_pick(int argc
, const char **argv
, const char *prefix
)
458 action
= CHERRY_PICK
;
459 return revert_or_cherry_pick(argc
, argv
);