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 int allow_rerere_auto
;
43 static const char *me
;
45 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
47 static void parse_args(int argc
, const char **argv
)
49 const char * const * usage_str
=
50 action
== REVERT
? revert_usage
: cherry_pick_usage
;
51 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
);
69 if (get_sha1(arg
, sha1
))
70 die ("Cannot find '%s'", arg
);
71 commit
= (struct commit
*)parse_object(sha1
);
73 die ("Could not find %s", sha1_to_hex(sha1
));
74 if (commit
->object
.type
== OBJ_TAG
) {
75 commit
= (struct commit
*)
76 deref_tag((struct object
*)commit
, arg
, strlen(arg
));
78 if (commit
->object
.type
!= OBJ_COMMIT
)
79 die ("'%s' does not point to a commit", arg
);
82 static char *get_oneline(const char *message
)
85 const char *p
= message
, *abbrev
, *eol
;
86 int abbrev_len
, oneline_len
;
89 die ("Could not read commit message of %s",
90 sha1_to_hex(commit
->object
.sha1
));
91 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
96 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
100 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
101 abbrev_len
= strlen(abbrev
);
102 oneline_len
= eol
- p
;
103 result
= xmalloc(abbrev_len
+ 5 + oneline_len
);
104 memcpy(result
, abbrev
, abbrev_len
);
105 memcpy(result
+ abbrev_len
, "... ", 4);
106 memcpy(result
+ abbrev_len
+ 4, p
, oneline_len
);
107 result
[abbrev_len
+ 4 + oneline_len
] = '\0';
111 static char *get_encoding(const char *message
)
113 const char *p
= message
, *eol
;
116 die ("Could not read commit message of %s",
117 sha1_to_hex(commit
->object
.sha1
));
118 while (*p
&& *p
!= '\n') {
119 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
121 if (!prefixcmp(p
, "encoding ")) {
122 char *result
= xmalloc(eol
- 8 - p
);
123 strlcpy(result
, p
+ 9, eol
- 8 - p
);
133 static struct lock_file msg_file
;
136 static void add_to_msg(const char *string
)
138 int len
= strlen(string
);
139 if (write_in_full(msg_fd
, string
, len
) < 0)
140 die_errno ("Could not write to MERGE_MSG");
143 static void add_message_to_msg(const char *message
)
145 const char *p
= message
;
146 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
150 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
157 static void set_author_ident_env(const char *message
)
159 const char *p
= message
;
161 die ("Could not read commit message of %s",
162 sha1_to_hex(commit
->object
.sha1
));
163 while (*p
&& *p
!= '\n') {
166 for (eol
= p
; *eol
&& *eol
!= '\n'; eol
++)
168 if (!prefixcmp(p
, "author ")) {
169 char *line
, *pend
, *email
, *timestamp
;
172 line
= xmemdupz(p
, eol
- p
);
173 email
= strchr(line
, '<');
175 die ("Could not extract author email from %s",
176 sha1_to_hex(commit
->object
.sha1
));
180 for (pend
= email
; pend
!= line
+ 1 &&
181 isspace(pend
[-1]); pend
--);
185 timestamp
= strchr(email
, '>');
187 die ("Could not extract author time from %s",
188 sha1_to_hex(commit
->object
.sha1
));
190 for (timestamp
++; *timestamp
&& isspace(*timestamp
);
193 setenv("GIT_AUTHOR_NAME", line
, 1);
194 setenv("GIT_AUTHOR_EMAIL", email
, 1);
195 setenv("GIT_AUTHOR_DATE", timestamp
, 1);
203 die ("No author information found in %s",
204 sha1_to_hex(commit
->object
.sha1
));
207 static char *help_msg(const unsigned char *sha1
)
209 static char helpbuf
[1024];
210 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
215 strcpy(helpbuf
, " After resolving the conflicts,\n"
216 "mark the corrected paths with 'git add <paths>' "
217 "or 'git rm <paths>' and commit the result.");
219 if (action
== CHERRY_PICK
) {
220 sprintf(helpbuf
+ strlen(helpbuf
),
221 "\nWhen commiting, use the option "
222 "'-c %s' to retain authorship and message.",
223 find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
228 static struct tree
*empty_tree(void)
230 struct tree
*tree
= xcalloc(1, sizeof(struct tree
));
232 tree
->object
.parsed
= 1;
233 tree
->object
.type
= OBJ_TREE
;
234 pretend_sha1_file(NULL
, 0, OBJ_TREE
, tree
->object
.sha1
);
238 static NORETURN
void die_dirty_index(const char *me
)
240 if (read_cache_unmerged()) {
241 die_resolve_conflict(me
);
243 if (advice_commit_before_merge
)
244 die("Your local changes would be overwritten by %s.\n"
245 "Please, commit your changes or stash them to proceed.", me
);
247 die("Your local changes would be overwritten by %s.\n", me
);
251 static int revert_or_cherry_pick(int argc
, const char **argv
)
253 unsigned char head
[20];
254 struct commit
*base
, *next
, *parent
;
255 int i
, index_fd
, clean
;
256 char *oneline
, *reencoded_message
= NULL
;
257 const char *message
, *encoding
;
258 char *defmsg
= git_pathdup("MERGE_MSG");
259 struct merge_options o
;
260 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
261 static struct lock_file index_lock
;
263 git_config(git_default_config
, NULL
);
264 me
= action
== REVERT
? "revert" : "cherry-pick";
265 setenv(GIT_REFLOG_ACTION
, me
, 0);
266 parse_args(argc
, argv
);
268 /* this is copied from the shell script, but it's never triggered... */
269 if (action
== REVERT
&& !no_replay
)
270 die("revert is incompatible with replay");
272 if (read_cache() < 0)
273 die("git %s: failed to read the index", me
);
276 * We do not intend to commit immediately. We just want to
277 * merge the differences in, so let's compute the tree
278 * that represents the "current" state for merge-recursive
281 if (write_cache_as_tree(head
, 0, NULL
))
282 die ("Your index file is unmerged.");
284 if (get_sha1("HEAD", head
))
285 die ("You do not have a valid HEAD");
286 if (index_differs_from("HEAD", 0))
291 index_fd
= hold_locked_index(&index_lock
, 1);
293 if (!commit
->parents
) {
294 if (action
== REVERT
)
295 die ("Cannot revert a root commit");
298 else if (commit
->parents
->next
) {
299 /* Reverting or cherry-picking a merge commit */
301 struct commit_list
*p
;
304 die("Commit %s is a merge but no -m option was given.",
305 sha1_to_hex(commit
->object
.sha1
));
307 for (cnt
= 1, p
= commit
->parents
;
308 cnt
!= mainline
&& p
;
311 if (cnt
!= mainline
|| !p
)
312 die("Commit %s does not have parent %d",
313 sha1_to_hex(commit
->object
.sha1
), mainline
);
315 } else if (0 < mainline
)
316 die("Mainline was specified but commit %s is not a merge.",
317 sha1_to_hex(commit
->object
.sha1
));
319 parent
= commit
->parents
->item
;
321 if (!(message
= commit
->buffer
))
322 die ("Cannot get commit message for %s",
323 sha1_to_hex(commit
->object
.sha1
));
325 if (parent
&& parse_commit(parent
) < 0)
326 die("%s: cannot parse parent commit %s",
327 me
, sha1_to_hex(parent
->object
.sha1
));
330 * "commit" is an existing commit. We would want to apply
331 * the difference it introduces since its first parent "prev"
332 * on top of the current HEAD if we are cherry-pick. Or the
333 * reverse of it if we are revert.
336 msg_fd
= hold_lock_file_for_update(&msg_file
, defmsg
,
339 encoding
= get_encoding(message
);
342 if (!git_commit_encoding
)
343 git_commit_encoding
= "UTF-8";
344 if ((reencoded_message
= reencode_string(message
,
345 git_commit_encoding
, encoding
)))
346 message
= reencoded_message
;
348 oneline
= get_oneline(message
);
350 if (action
== REVERT
) {
351 char *oneline_body
= strchr(oneline
, ' ');
355 add_to_msg("Revert \"");
356 add_to_msg(oneline_body
+ 1);
357 add_to_msg("\"\n\nThis reverts commit ");
358 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
360 if (commit
->parents
->next
) {
361 add_to_msg(", reversing\nchanges made to ");
362 add_to_msg(sha1_to_hex(parent
->object
.sha1
));
368 set_author_ident_env(message
);
369 add_message_to_msg(message
);
371 add_to_msg("(cherry picked from commit ");
372 add_to_msg(sha1_to_hex(commit
->object
.sha1
));
378 init_merge_options(&o
);
382 head_tree
= parse_tree_indirect(head
);
383 next_tree
= next
? next
->tree
: empty_tree();
384 base_tree
= base
? base
->tree
: empty_tree();
386 clean
= merge_trees(&o
,
388 next_tree
, base_tree
, &result
);
390 if (active_cache_changed
&&
391 (write_cache(index_fd
, active_cache
, active_nr
) ||
392 commit_locked_index(&index_lock
)))
393 die("%s: Unable to write new index file", me
);
394 rollback_lock_file(&index_lock
);
397 add_to_msg("\nConflicts:\n\n");
398 for (i
= 0; i
< active_nr
;) {
399 struct cache_entry
*ce
= active_cache
[i
++];
402 add_to_msg(ce
->name
);
404 while (i
< active_nr
&& !strcmp(ce
->name
,
405 active_cache
[i
]->name
))
409 if (commit_lock_file(&msg_file
) < 0)
410 die ("Error wrapping up %s", defmsg
);
411 fprintf(stderr
, "Automatic %s failed.%s\n",
412 me
, help_msg(commit
->object
.sha1
));
413 rerere(allow_rerere_auto
);
416 if (commit_lock_file(&msg_file
) < 0)
417 die ("Error wrapping up %s", defmsg
);
418 fprintf(stderr
, "Finished one %s.\n", me
);
422 * If we are cherry-pick, and if the merge did not result in
423 * hand-editing, we will hit this commit and inherit the original
424 * author date and name.
425 * If we are revert, or if our cherry-pick results in a hand merge,
426 * we had better say that the current user is responsible for that.
430 /* 6 is max possible length of our args array including NULL */
433 args
[i
++] = "commit";
442 return execv_git_cmd(args
);
444 free(reencoded_message
);
450 int cmd_revert(int argc
, const char **argv
, const char *prefix
)
456 return revert_or_cherry_pick(argc
, argv
);
459 int cmd_cherry_pick(int argc
, const char **argv
, const char *prefix
)
462 action
= CHERRY_PICK
;
463 return revert_or_cherry_pick(argc
, argv
);