2009-02-02 06:12:44 +01:00
|
|
|
/*
|
|
|
|
* Builtin "git replace"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Christian Couder <chriscool@tuxfamily.org>
|
|
|
|
*
|
2013-06-18 19:44:58 +02:00
|
|
|
* Based on builtin/tag.c by Kristian Høgsberg <krh@redhat.com>
|
2009-02-02 06:12:44 +01:00
|
|
|
* and Carlos Rica <jasampler@gmail.com> that was itself based on
|
|
|
|
* git-tag.sh and mktag.c by Linus Torvalds.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "refs.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
|
|
|
|
static const char * const git_replace_usage[] = {
|
2012-08-20 14:32:36 +02:00
|
|
|
N_("git replace [-f] <object> <replacement>"),
|
|
|
|
N_("git replace -d <object>..."),
|
2013-12-11 08:46:10 +01:00
|
|
|
N_("git replace [--format=<format>] [-l [<pattern>]]"),
|
2009-02-02 06:12:44 +01:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2013-12-28 12:00:05 +01:00
|
|
|
enum replace_format {
|
|
|
|
REPLACE_FORMAT_SHORT,
|
|
|
|
REPLACE_FORMAT_MEDIUM,
|
|
|
|
REPLACE_FORMAT_LONG
|
|
|
|
};
|
2013-12-11 08:46:10 +01:00
|
|
|
|
|
|
|
struct show_data {
|
|
|
|
const char *pattern;
|
2013-12-28 12:00:05 +01:00
|
|
|
enum replace_format format;
|
2013-12-11 08:46:10 +01:00
|
|
|
};
|
|
|
|
|
2009-02-02 06:12:44 +01:00
|
|
|
static int show_reference(const char *refname, const unsigned char *sha1,
|
|
|
|
int flag, void *cb_data)
|
|
|
|
{
|
2013-12-11 08:46:10 +01:00
|
|
|
struct show_data *data = cb_data;
|
|
|
|
|
2014-02-15 03:01:46 +01:00
|
|
|
if (!wildmatch(data->pattern, refname, 0, NULL)) {
|
2013-12-28 12:00:05 +01:00
|
|
|
if (data->format == REPLACE_FORMAT_SHORT)
|
2013-12-11 08:46:10 +01:00
|
|
|
printf("%s\n", refname);
|
2013-12-28 12:00:05 +01:00
|
|
|
else if (data->format == REPLACE_FORMAT_MEDIUM)
|
2013-12-11 08:46:10 +01:00
|
|
|
printf("%s -> %s\n", refname, sha1_to_hex(sha1));
|
2013-12-28 12:00:05 +01:00
|
|
|
else { /* data->format == REPLACE_FORMAT_LONG */
|
2013-12-11 08:46:10 +01:00
|
|
|
unsigned char object[20];
|
|
|
|
enum object_type obj_type, repl_type;
|
2009-02-02 06:12:44 +01:00
|
|
|
|
2013-12-11 08:46:10 +01:00
|
|
|
if (get_sha1(refname, object))
|
|
|
|
return error("Failed to resolve '%s' as a valid ref.", refname);
|
|
|
|
|
|
|
|
obj_type = sha1_object_info(object, NULL);
|
|
|
|
repl_type = sha1_object_info(sha1, NULL);
|
|
|
|
|
|
|
|
printf("%s (%s) -> %s (%s)\n", refname, typename(obj_type),
|
|
|
|
sha1_to_hex(sha1), typename(repl_type));
|
|
|
|
}
|
|
|
|
}
|
2009-02-02 06:12:44 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-11 08:46:10 +01:00
|
|
|
static int list_replace_refs(const char *pattern, const char *format)
|
2009-02-02 06:12:44 +01:00
|
|
|
{
|
2013-12-11 08:46:10 +01:00
|
|
|
struct show_data data;
|
|
|
|
|
2009-02-02 06:12:44 +01:00
|
|
|
if (pattern == NULL)
|
|
|
|
pattern = "*";
|
2013-12-11 08:46:10 +01:00
|
|
|
data.pattern = pattern;
|
|
|
|
|
|
|
|
if (format == NULL || *format == '\0' || !strcmp(format, "short"))
|
2013-12-28 12:00:05 +01:00
|
|
|
data.format = REPLACE_FORMAT_SHORT;
|
2013-12-11 08:46:10 +01:00
|
|
|
else if (!strcmp(format, "medium"))
|
2013-12-28 12:00:05 +01:00
|
|
|
data.format = REPLACE_FORMAT_MEDIUM;
|
|
|
|
else if (!strcmp(format, "long"))
|
|
|
|
data.format = REPLACE_FORMAT_LONG;
|
2013-12-11 08:46:10 +01:00
|
|
|
else
|
|
|
|
die("invalid replace format '%s'\n"
|
2013-12-28 12:00:05 +01:00
|
|
|
"valid formats are 'short', 'medium' and 'long'\n",
|
2013-12-11 08:46:10 +01:00
|
|
|
format);
|
2009-02-02 06:12:44 +01:00
|
|
|
|
2013-12-11 08:46:10 +01:00
|
|
|
for_each_replace_ref(show_reference, (void *) &data);
|
2009-02-02 06:12:44 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef int (*each_replace_name_fn)(const char *name, const char *ref,
|
|
|
|
const unsigned char *sha1);
|
|
|
|
|
|
|
|
static int for_each_replace_name(const char **argv, each_replace_name_fn fn)
|
|
|
|
{
|
2012-11-13 11:34:11 +01:00
|
|
|
const char **p, *full_hex;
|
2009-02-02 06:12:44 +01:00
|
|
|
char ref[PATH_MAX];
|
|
|
|
int had_error = 0;
|
|
|
|
unsigned char sha1[20];
|
|
|
|
|
|
|
|
for (p = argv; *p; p++) {
|
2012-11-13 11:34:11 +01:00
|
|
|
if (get_sha1(*p, sha1)) {
|
|
|
|
error("Failed to resolve '%s' as a valid ref.", *p);
|
2009-02-02 06:12:44 +01:00
|
|
|
had_error = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 11:34:11 +01:00
|
|
|
full_hex = sha1_to_hex(sha1);
|
|
|
|
snprintf(ref, sizeof(ref), "refs/replace/%s", full_hex);
|
|
|
|
/* read_ref() may reuse the buffer */
|
|
|
|
full_hex = ref + strlen("refs/replace/");
|
2011-11-13 11:22:14 +01:00
|
|
|
if (read_ref(ref, sha1)) {
|
2012-11-13 11:34:11 +01:00
|
|
|
error("replace ref '%s' not found.", full_hex);
|
2009-02-02 06:12:44 +01:00
|
|
|
had_error = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-13 11:34:11 +01:00
|
|
|
if (fn(full_hex, ref, sha1))
|
2009-02-02 06:12:44 +01:00
|
|
|
had_error = 1;
|
|
|
|
}
|
|
|
|
return had_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int delete_replace_ref(const char *name, const char *ref,
|
|
|
|
const unsigned char *sha1)
|
|
|
|
{
|
|
|
|
if (delete_ref(ref, sha1, 0))
|
|
|
|
return 1;
|
|
|
|
printf("Deleted replace ref '%s'\n", name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-02 06:12:53 +01:00
|
|
|
static int replace_object(const char *object_ref, const char *replace_ref,
|
|
|
|
int force)
|
|
|
|
{
|
|
|
|
unsigned char object[20], prev[20], repl[20];
|
replace: forbid replacing an object with one of a different type
Users replacing an object with one of a different type were not
prevented to do so, even if it was obvious, and stated in the doc,
that bad things would result from doing that.
To avoid mistakes, it is better to just forbid that though.
If -f option, which means '--force', is used, we can allow an object
to be replaced with one of a different type, as the user should know
what (s)he is doing.
If one object is replaced with one of a different type, the only way
to keep the history valid is to also replace all the other objects
that point to the replaced object. That's because:
* Annotated tags contain the type of the tagged object.
* The tree/parent lines in commits must be a tree and commits, resp.
* The object types referred to by trees are specified in the 'mode'
field:
100644 and 100755 blob
160000 commit
040000 tree
(these are the only valid modes)
* Blobs don't point at anything.
The doc will be updated in a later patch.
Acked-by: Philip Oakley <philipoakley@iee.org>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-09-06 07:10:53 +02:00
|
|
|
enum object_type obj_type, repl_type;
|
2009-02-02 06:12:53 +01:00
|
|
|
char ref[PATH_MAX];
|
|
|
|
struct ref_lock *lock;
|
|
|
|
|
|
|
|
if (get_sha1(object_ref, object))
|
|
|
|
die("Failed to resolve '%s' as a valid ref.", object_ref);
|
|
|
|
if (get_sha1(replace_ref, repl))
|
|
|
|
die("Failed to resolve '%s' as a valid ref.", replace_ref);
|
|
|
|
|
|
|
|
if (snprintf(ref, sizeof(ref),
|
|
|
|
"refs/replace/%s",
|
|
|
|
sha1_to_hex(object)) > sizeof(ref) - 1)
|
|
|
|
die("replace ref name too long: %.*s...", 50, ref);
|
2011-09-15 23:10:25 +02:00
|
|
|
if (check_refname_format(ref, 0))
|
2009-02-02 06:12:53 +01:00
|
|
|
die("'%s' is not a valid ref name.", ref);
|
|
|
|
|
replace: forbid replacing an object with one of a different type
Users replacing an object with one of a different type were not
prevented to do so, even if it was obvious, and stated in the doc,
that bad things would result from doing that.
To avoid mistakes, it is better to just forbid that though.
If -f option, which means '--force', is used, we can allow an object
to be replaced with one of a different type, as the user should know
what (s)he is doing.
If one object is replaced with one of a different type, the only way
to keep the history valid is to also replace all the other objects
that point to the replaced object. That's because:
* Annotated tags contain the type of the tagged object.
* The tree/parent lines in commits must be a tree and commits, resp.
* The object types referred to by trees are specified in the 'mode'
field:
100644 and 100755 blob
160000 commit
040000 tree
(these are the only valid modes)
* Blobs don't point at anything.
The doc will be updated in a later patch.
Acked-by: Philip Oakley <philipoakley@iee.org>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-09-06 07:10:53 +02:00
|
|
|
obj_type = sha1_object_info(object, NULL);
|
|
|
|
repl_type = sha1_object_info(repl, NULL);
|
|
|
|
if (!force && obj_type != repl_type)
|
|
|
|
die("Objects must be of the same type.\n"
|
|
|
|
"'%s' points to a replaced object of type '%s'\n"
|
|
|
|
"while '%s' points to a replacement object of type '%s'.",
|
|
|
|
object_ref, typename(obj_type),
|
|
|
|
replace_ref, typename(repl_type));
|
|
|
|
|
2011-11-13 11:22:14 +01:00
|
|
|
if (read_ref(ref, prev))
|
2009-02-02 06:12:53 +01:00
|
|
|
hashclr(prev);
|
|
|
|
else if (!force)
|
|
|
|
die("replace ref '%s' already exists", ref);
|
|
|
|
|
2013-08-30 20:12:00 +02:00
|
|
|
lock = lock_any_ref_for_update(ref, prev, 0, NULL);
|
2009-02-02 06:12:53 +01:00
|
|
|
if (!lock)
|
|
|
|
die("%s: cannot lock the ref", ref);
|
|
|
|
if (write_ref_sha1(lock, repl, NULL) < 0)
|
|
|
|
die("%s: cannot update the ref", ref);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-02 06:12:44 +01:00
|
|
|
int cmd_replace(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2009-02-02 06:12:53 +01:00
|
|
|
int list = 0, delete = 0, force = 0;
|
2013-12-11 08:46:10 +01:00
|
|
|
const char *format = NULL;
|
2009-02-02 06:12:44 +01:00
|
|
|
struct option options[] = {
|
2013-09-25 08:35:24 +02:00
|
|
|
OPT_BOOL('l', "list", &list, N_("list replace refs")),
|
|
|
|
OPT_BOOL('d', "delete", &delete, N_("delete replace refs")),
|
|
|
|
OPT_BOOL('f', "force", &force, N_("replace the ref if it exists")),
|
2013-12-11 08:46:10 +01:00
|
|
|
OPT_STRING(0, "format", &format, N_("format"), N_("use this format")),
|
2009-02-02 06:12:44 +01:00
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
2014-02-18 12:24:55 +01:00
|
|
|
check_replace_refs = 0;
|
2013-12-11 08:46:12 +01:00
|
|
|
|
2009-02-02 06:12:58 +01:00
|
|
|
argc = parse_options(argc, argv, prefix, options, git_replace_usage, 0);
|
2009-02-02 06:12:44 +01:00
|
|
|
|
|
|
|
if (list && delete)
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("-l and -d cannot be used together",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:44 +01:00
|
|
|
|
2013-12-11 08:46:10 +01:00
|
|
|
if (format && delete)
|
|
|
|
usage_msg_opt("--format and -d cannot be used together",
|
|
|
|
git_replace_usage, options);
|
|
|
|
|
2009-02-02 06:12:53 +01:00
|
|
|
if (force && (list || delete))
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("-f cannot be used with -d or -l",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:53 +01:00
|
|
|
|
|
|
|
/* Delete refs */
|
2009-02-02 06:12:44 +01:00
|
|
|
if (delete) {
|
|
|
|
if (argc < 1)
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("-d needs at least one argument",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:44 +01:00
|
|
|
return for_each_replace_name(argv, delete_replace_ref);
|
|
|
|
}
|
|
|
|
|
2009-02-02 06:12:53 +01:00
|
|
|
/* Replace object */
|
|
|
|
if (!list && argc) {
|
|
|
|
if (argc != 2)
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("bad number of arguments",
|
|
|
|
git_replace_usage, options);
|
2013-12-11 08:46:10 +01:00
|
|
|
if (format)
|
|
|
|
usage_msg_opt("--format cannot be used when not listing",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:53 +01:00
|
|
|
return replace_object(argv[0], argv[1], force);
|
|
|
|
}
|
|
|
|
|
2009-02-02 06:12:44 +01:00
|
|
|
/* List refs, even if "list" is not set */
|
|
|
|
if (argc > 1)
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("only one pattern can be given with -l",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:53 +01:00
|
|
|
if (force)
|
2009-02-02 06:13:06 +01:00
|
|
|
usage_msg_opt("-f needs some arguments",
|
|
|
|
git_replace_usage, options);
|
2009-02-02 06:12:44 +01:00
|
|
|
|
2013-12-11 08:46:10 +01:00
|
|
|
return list_replace_refs(argv[0], format);
|
2009-02-02 06:12:44 +01:00
|
|
|
}
|