2 * Builtin "git replace"
4 * Copyright (c) 2008 Christian Couder <chriscool@tuxfamily.org>
6 * Based on builtin/tag.c by Kristian Høgsberg <krh@redhat.com>
7 * and Carlos Rica <jasampler@gmail.com> that was itself based on
8 * git-tag.sh and mktag.c by Linus Torvalds.
15 #include "parse-options.h"
16 #include "run-command.h"
17 #include "object-store.h"
18 #include "repository.h"
21 static const char * const git_replace_usage
[] = {
22 N_("git replace [-f] <object> <replacement>"),
23 N_("git replace [-f] --edit <object>"),
24 N_("git replace [-f] --graft <commit> [<parent>...]"),
25 N_("git replace -d <object>..."),
26 N_("git replace [--format=<format>] [-l [<pattern>]]"),
32 REPLACE_FORMAT_MEDIUM
,
38 enum replace_format format
;
41 static int show_reference(const char *refname
, const struct object_id
*oid
,
42 int flag
, void *cb_data
)
44 struct show_data
*data
= cb_data
;
46 if (!wildmatch(data
->pattern
, refname
, 0)) {
47 if (data
->format
== REPLACE_FORMAT_SHORT
)
48 printf("%s\n", refname
);
49 else if (data
->format
== REPLACE_FORMAT_MEDIUM
)
50 printf("%s -> %s\n", refname
, oid_to_hex(oid
));
51 else { /* data->format == REPLACE_FORMAT_LONG */
52 struct object_id object
;
53 enum object_type obj_type
, repl_type
;
55 if (get_oid(refname
, &object
))
56 return error("Failed to resolve '%s' as a valid ref.", refname
);
58 obj_type
= oid_object_info(the_repository
, &object
,
60 repl_type
= oid_object_info(the_repository
, oid
, NULL
);
62 printf("%s (%s) -> %s (%s)\n", refname
, type_name(obj_type
),
63 oid_to_hex(oid
), type_name(repl_type
));
70 static int list_replace_refs(const char *pattern
, const char *format
)
72 struct show_data data
;
76 data
.pattern
= pattern
;
78 if (format
== NULL
|| *format
== '\0' || !strcmp(format
, "short"))
79 data
.format
= REPLACE_FORMAT_SHORT
;
80 else if (!strcmp(format
, "medium"))
81 data
.format
= REPLACE_FORMAT_MEDIUM
;
82 else if (!strcmp(format
, "long"))
83 data
.format
= REPLACE_FORMAT_LONG
;
85 die("invalid replace format '%s'\n"
86 "valid formats are 'short', 'medium' and 'long'\n",
89 for_each_replace_ref(the_repository
, show_reference
, (void *)&data
);
94 typedef int (*each_replace_name_fn
)(const char *name
, const char *ref
,
95 const struct object_id
*oid
);
97 static int for_each_replace_name(const char **argv
, each_replace_name_fn fn
)
99 const char **p
, *full_hex
;
100 struct strbuf ref
= STRBUF_INIT
;
103 struct object_id oid
;
105 strbuf_addstr(&ref
, git_replace_ref_base
);
108 for (p
= argv
; *p
; p
++) {
109 if (get_oid(*p
, &oid
)) {
110 error("Failed to resolve '%s' as a valid ref.", *p
);
115 strbuf_setlen(&ref
, base_len
);
116 strbuf_addstr(&ref
, oid_to_hex(&oid
));
117 full_hex
= ref
.buf
+ base_len
;
119 if (read_ref(ref
.buf
, &oid
)) {
120 error("replace ref '%s' not found.", full_hex
);
124 if (fn(full_hex
, ref
.buf
, &oid
))
127 strbuf_release(&ref
);
131 static int delete_replace_ref(const char *name
, const char *ref
,
132 const struct object_id
*oid
)
134 if (delete_ref(NULL
, ref
, oid
, 0))
136 printf("Deleted replace ref '%s'\n", name
);
140 static void check_ref_valid(struct object_id
*object
,
141 struct object_id
*prev
,
146 strbuf_addf(ref
, "%s%s", git_replace_ref_base
, oid_to_hex(object
));
147 if (check_refname_format(ref
->buf
, 0))
148 die("'%s' is not a valid ref name.", ref
->buf
);
150 if (read_ref(ref
->buf
, prev
))
153 die("replace ref '%s' already exists", ref
->buf
);
156 static int replace_object_oid(const char *object_ref
,
157 struct object_id
*object
,
158 const char *replace_ref
,
159 struct object_id
*repl
,
162 struct object_id prev
;
163 enum object_type obj_type
, repl_type
;
164 struct strbuf ref
= STRBUF_INIT
;
165 struct ref_transaction
*transaction
;
166 struct strbuf err
= STRBUF_INIT
;
168 obj_type
= oid_object_info(the_repository
, object
, NULL
);
169 repl_type
= oid_object_info(the_repository
, repl
, NULL
);
170 if (!force
&& obj_type
!= repl_type
)
171 die("Objects must be of the same type.\n"
172 "'%s' points to a replaced object of type '%s'\n"
173 "while '%s' points to a replacement object of type '%s'.",
174 object_ref
, type_name(obj_type
),
175 replace_ref
, type_name(repl_type
));
177 check_ref_valid(object
, &prev
, &ref
, force
);
179 transaction
= ref_transaction_begin(&err
);
181 ref_transaction_update(transaction
, ref
.buf
, repl
, &prev
,
183 ref_transaction_commit(transaction
, &err
))
186 ref_transaction_free(transaction
);
187 strbuf_release(&ref
);
191 static int replace_object(const char *object_ref
, const char *replace_ref
, int force
)
193 struct object_id object
, repl
;
195 if (get_oid(object_ref
, &object
))
196 die("Failed to resolve '%s' as a valid ref.", object_ref
);
197 if (get_oid(replace_ref
, &repl
))
198 die("Failed to resolve '%s' as a valid ref.", replace_ref
);
200 return replace_object_oid(object_ref
, &object
, replace_ref
, &repl
, force
);
204 * Write the contents of the object named by "sha1" to the file "filename".
205 * If "raw" is true, then the object's raw contents are printed according to
206 * "type". Otherwise, we pretty-print the contents for human editing.
208 static void export_object(const struct object_id
*oid
, enum object_type type
,
209 int raw
, const char *filename
)
211 struct child_process cmd
= CHILD_PROCESS_INIT
;
214 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
216 die_errno("unable to open %s for writing", filename
);
218 argv_array_push(&cmd
.args
, "--no-replace-objects");
219 argv_array_push(&cmd
.args
, "cat-file");
221 argv_array_push(&cmd
.args
, type_name(type
));
223 argv_array_push(&cmd
.args
, "-p");
224 argv_array_push(&cmd
.args
, oid_to_hex(oid
));
228 if (run_command(&cmd
))
229 die("cat-file reported failure");
233 * Read a previously-exported (and possibly edited) object back from "filename",
234 * interpreting it as "type", and writing the result to the object database.
235 * The sha1 of the written object is returned via sha1.
237 static void import_object(struct object_id
*oid
, enum object_type type
,
238 int raw
, const char *filename
)
242 fd
= open(filename
, O_RDONLY
);
244 die_errno("unable to open %s for reading", filename
);
246 if (!raw
&& type
== OBJ_TREE
) {
247 const char *argv
[] = { "mktree", NULL
};
248 struct child_process cmd
= CHILD_PROCESS_INIT
;
249 struct strbuf result
= STRBUF_INIT
;
256 if (start_command(&cmd
))
257 die("unable to spawn mktree");
259 if (strbuf_read(&result
, cmd
.out
, 41) < 0)
260 die_errno("unable to read from mktree");
263 if (finish_command(&cmd
))
264 die("mktree reported failure");
265 if (get_oid_hex(result
.buf
, oid
) < 0)
266 die("mktree did not return an object name");
268 strbuf_release(&result
);
271 int flags
= HASH_FORMAT_CHECK
| HASH_WRITE_OBJECT
;
273 if (fstat(fd
, &st
) < 0)
274 die_errno("unable to fstat %s", filename
);
275 if (index_fd(oid
, fd
, &st
, type
, NULL
, flags
) < 0)
276 die("unable to write object to database");
277 /* index_fd close()s fd for us */
281 * No need to close(fd) here; both run-command and index-fd
282 * will have done it for us.
286 static int edit_and_replace(const char *object_ref
, int force
, int raw
)
288 char *tmpfile
= git_pathdup("REPLACE_EDITOBJ");
289 enum object_type type
;
290 struct object_id old_oid
, new_oid
, prev
;
291 struct strbuf ref
= STRBUF_INIT
;
293 if (get_oid(object_ref
, &old_oid
) < 0)
294 die("Not a valid object name: '%s'", object_ref
);
296 type
= oid_object_info(the_repository
, &old_oid
, NULL
);
298 die("unable to get object type for %s", oid_to_hex(&old_oid
));
300 check_ref_valid(&old_oid
, &prev
, &ref
, force
);
301 strbuf_release(&ref
);
303 export_object(&old_oid
, type
, raw
, tmpfile
);
304 if (launch_editor(tmpfile
, NULL
, NULL
) < 0)
305 die("editing object file failed");
306 import_object(&new_oid
, type
, raw
, tmpfile
);
310 if (!oidcmp(&old_oid
, &new_oid
))
311 return error("new object is the same as the old one: '%s'", oid_to_hex(&old_oid
));
313 return replace_object_oid(object_ref
, &old_oid
, "replacement", &new_oid
, force
);
316 static void replace_parents(struct strbuf
*buf
, int argc
, const char **argv
)
318 struct strbuf new_parents
= STRBUF_INIT
;
319 const char *parent_start
, *parent_end
;
322 /* find existing parents */
323 parent_start
= buf
->buf
;
324 parent_start
+= GIT_SHA1_HEXSZ
+ 6; /* "tree " + "hex sha1" + "\n" */
325 parent_end
= parent_start
;
327 while (starts_with(parent_end
, "parent "))
328 parent_end
+= 48; /* "parent " + "hex sha1" + "\n" */
330 /* prepare new parents */
331 for (i
= 0; i
< argc
; i
++) {
332 struct object_id oid
;
333 if (get_oid(argv
[i
], &oid
) < 0)
334 die(_("Not a valid object name: '%s'"), argv
[i
]);
335 lookup_commit_or_die(&oid
, argv
[i
]);
336 strbuf_addf(&new_parents
, "parent %s\n", oid_to_hex(&oid
));
339 /* replace existing parents with new ones */
340 strbuf_splice(buf
, parent_start
- buf
->buf
, parent_end
- parent_start
,
341 new_parents
.buf
, new_parents
.len
);
343 strbuf_release(&new_parents
);
346 struct check_mergetag_data
{
351 static void check_one_mergetag(struct commit
*commit
,
352 struct commit_extra_header
*extra
,
355 struct check_mergetag_data
*mergetag_data
= (struct check_mergetag_data
*)data
;
356 const char *ref
= mergetag_data
->argv
[0];
357 struct object_id tag_oid
;
361 hash_object_file(extra
->value
, extra
->len
, type_name(OBJ_TAG
), &tag_oid
);
362 tag
= lookup_tag(&tag_oid
);
364 die(_("bad mergetag in commit '%s'"), ref
);
365 if (parse_tag_buffer(tag
, extra
->value
, extra
->len
))
366 die(_("malformed mergetag in commit '%s'"), ref
);
368 /* iterate over new parents */
369 for (i
= 1; i
< mergetag_data
->argc
; i
++) {
370 struct object_id oid
;
371 if (get_oid(mergetag_data
->argv
[i
], &oid
) < 0)
372 die(_("Not a valid object name: '%s'"), mergetag_data
->argv
[i
]);
373 if (!oidcmp(&tag
->tagged
->oid
, &oid
))
377 die(_("original commit '%s' contains mergetag '%s' that is discarded; "
378 "use --edit instead of --graft"), ref
, oid_to_hex(&tag_oid
));
381 static void check_mergetags(struct commit
*commit
, int argc
, const char **argv
)
383 struct check_mergetag_data mergetag_data
;
385 mergetag_data
.argc
= argc
;
386 mergetag_data
.argv
= argv
;
387 for_each_mergetag(check_one_mergetag
, commit
, &mergetag_data
);
390 static int create_graft(int argc
, const char **argv
, int force
)
392 struct object_id old_oid
, new_oid
;
393 const char *old_ref
= argv
[0];
394 struct commit
*commit
;
395 struct strbuf buf
= STRBUF_INIT
;
399 if (get_oid(old_ref
, &old_oid
) < 0)
400 die(_("Not a valid object name: '%s'"), old_ref
);
401 commit
= lookup_commit_or_die(&old_oid
, old_ref
);
403 buffer
= get_commit_buffer(commit
, &size
);
404 strbuf_add(&buf
, buffer
, size
);
405 unuse_commit_buffer(commit
, buffer
);
407 replace_parents(&buf
, argc
- 1, &argv
[1]);
409 if (remove_signature(&buf
)) {
410 warning(_("the original commit '%s' has a gpg signature."), old_ref
);
411 warning(_("the signature will be removed in the replacement commit!"));
414 check_mergetags(commit
, argc
, argv
);
416 if (write_object_file(buf
.buf
, buf
.len
, commit_type
, &new_oid
))
417 die(_("could not write replacement commit for: '%s'"), old_ref
);
419 strbuf_release(&buf
);
421 if (!oidcmp(&old_oid
, &new_oid
))
422 return error("new commit is the same as the old one: '%s'", oid_to_hex(&old_oid
));
424 return replace_object_oid(old_ref
, &old_oid
, "replacement", &new_oid
, force
);
427 int cmd_replace(int argc
, const char **argv
, const char *prefix
)
431 const char *format
= NULL
;
433 MODE_UNSPECIFIED
= 0,
439 } cmdmode
= MODE_UNSPECIFIED
;
440 struct option options
[] = {
441 OPT_CMDMODE('l', "list", &cmdmode
, N_("list replace refs"), MODE_LIST
),
442 OPT_CMDMODE('d', "delete", &cmdmode
, N_("delete replace refs"), MODE_DELETE
),
443 OPT_CMDMODE('e', "edit", &cmdmode
, N_("edit existing object"), MODE_EDIT
),
444 OPT_CMDMODE('g', "graft", &cmdmode
, N_("change a commit's parents"), MODE_GRAFT
),
445 OPT_BOOL_F('f', "force", &force
, N_("replace the ref if it exists"),
446 PARSE_OPT_NOCOMPLETE
),
447 OPT_BOOL(0, "raw", &raw
, N_("do not pretty-print contents for --edit")),
448 OPT_STRING(0, "format", &format
, N_("format"), N_("use this format")),
452 check_replace_refs
= 0;
453 git_config(git_default_config
, NULL
);
455 argc
= parse_options(argc
, argv
, prefix
, options
, git_replace_usage
, 0);
458 cmdmode
= argc
? MODE_REPLACE
: MODE_LIST
;
460 if (format
&& cmdmode
!= MODE_LIST
)
461 usage_msg_opt("--format cannot be used when not listing",
462 git_replace_usage
, options
);
465 cmdmode
!= MODE_REPLACE
&&
466 cmdmode
!= MODE_EDIT
&&
467 cmdmode
!= MODE_GRAFT
)
468 usage_msg_opt("-f only makes sense when writing a replacement",
469 git_replace_usage
, options
);
471 if (raw
&& cmdmode
!= MODE_EDIT
)
472 usage_msg_opt("--raw only makes sense with --edit",
473 git_replace_usage
, options
);
478 usage_msg_opt("-d needs at least one argument",
479 git_replace_usage
, options
);
480 return for_each_replace_name(argv
, delete_replace_ref
);
484 usage_msg_opt("bad number of arguments",
485 git_replace_usage
, options
);
486 return replace_object(argv
[0], argv
[1], force
);
490 usage_msg_opt("-e needs exactly one argument",
491 git_replace_usage
, options
);
492 return edit_and_replace(argv
[0], force
, raw
);
496 usage_msg_opt("-g needs at least one argument",
497 git_replace_usage
, options
);
498 return create_graft(argc
, argv
, force
);
502 usage_msg_opt("only one pattern can be given with -l",
503 git_replace_usage
, options
);
504 return list_replace_refs(argv
[0], format
);
507 die("BUG: invalid cmdmode %d", (int)cmdmode
);