git-name-rev: add a --(no-)undefined option.
Rework get_rev_name to return NULL rather than "undefined" when a reference is undefined. If --undefined is passed (default), git-name-rev prints "undefined" for the name, else it die()s. Make git-describe use --no-undefined when calling git-name-rev so that --contains behavior matches the standard git-describe one. Signed-off-by: Pierre Habouzit <madcoder@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
30ffa60377
commit
a2cf9f445e
@ -271,10 +271,11 @@ int cmd_describe(int argc, const char **argv, const char *prefix)
|
|||||||
save_commit_buffer = 0;
|
save_commit_buffer = 0;
|
||||||
|
|
||||||
if (contains) {
|
if (contains) {
|
||||||
const char **args = xmalloc((5 + argc) * sizeof(char*));
|
const char **args = xmalloc((6 + argc) * sizeof(char*));
|
||||||
int i = 0;
|
int i = 0;
|
||||||
args[i++] = "name-rev";
|
args[i++] = "name-rev";
|
||||||
args[i++] = "--name-only";
|
args[i++] = "--name-only";
|
||||||
|
args[i++] = "--no-undefined";
|
||||||
if (!all) {
|
if (!all) {
|
||||||
args[i++] = "--tags";
|
args[i++] = "--tags";
|
||||||
if (pattern) {
|
if (pattern) {
|
||||||
|
@ -132,11 +132,11 @@ static const char* get_rev_name(struct object *o)
|
|||||||
struct commit *c;
|
struct commit *c;
|
||||||
|
|
||||||
if (o->type != OBJ_COMMIT)
|
if (o->type != OBJ_COMMIT)
|
||||||
return "undefined";
|
return NULL;
|
||||||
c = (struct commit *) o;
|
c = (struct commit *) o;
|
||||||
n = c->util;
|
n = c->util;
|
||||||
if (!n)
|
if (!n)
|
||||||
return "undefined";
|
return NULL;
|
||||||
|
|
||||||
if (!n->generation)
|
if (!n->generation)
|
||||||
return n->tip_name;
|
return n->tip_name;
|
||||||
@ -159,7 +159,7 @@ static char const * const name_rev_usage[] = {
|
|||||||
int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
||||||
{
|
{
|
||||||
struct object_array revs = { 0, 0, NULL };
|
struct object_array revs = { 0, 0, NULL };
|
||||||
int all = 0, transform_stdin = 0;
|
int all = 0, transform_stdin = 0, allow_undefined = 1;
|
||||||
struct name_ref_data data = { 0, 0, NULL };
|
struct name_ref_data data = { 0, 0, NULL };
|
||||||
struct option opts[] = {
|
struct option opts[] = {
|
||||||
OPT_BOOLEAN(0, "name-only", &data.name_only, "print only names (no SHA-1)"),
|
OPT_BOOLEAN(0, "name-only", &data.name_only, "print only names (no SHA-1)"),
|
||||||
@ -169,6 +169,7 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
|||||||
OPT_GROUP(""),
|
OPT_GROUP(""),
|
||||||
OPT_BOOLEAN(0, "all", &all, "list all commits reachable from all refs"),
|
OPT_BOOLEAN(0, "all", &all, "list all commits reachable from all refs"),
|
||||||
OPT_BOOLEAN(0, "stdin", &transform_stdin, "read from stdin"),
|
OPT_BOOLEAN(0, "stdin", &transform_stdin, "read from stdin"),
|
||||||
|
OPT_BOOLEAN(0, "undefined", &allow_undefined, "allow to print `undefined` names"),
|
||||||
OPT_END(),
|
OPT_END(),
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -226,7 +227,7 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
|||||||
else if (++forty == 40 &&
|
else if (++forty == 40 &&
|
||||||
!ishex(*(p+1))) {
|
!ishex(*(p+1))) {
|
||||||
unsigned char sha1[40];
|
unsigned char sha1[40];
|
||||||
const char *name = "undefined";
|
const char *name = NULL;
|
||||||
char c = *(p+1);
|
char c = *(p+1);
|
||||||
|
|
||||||
forty = 0;
|
forty = 0;
|
||||||
@ -240,11 +241,10 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
|||||||
}
|
}
|
||||||
*(p+1) = c;
|
*(p+1) = c;
|
||||||
|
|
||||||
if (!strcmp(name, "undefined"))
|
if (!name)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
fwrite(p_start, p - p_start + 1, 1,
|
fwrite(p_start, p - p_start + 1, 1, stdout);
|
||||||
stdout);
|
|
||||||
printf(" (%s)", name);
|
printf(" (%s)", name);
|
||||||
p_start = p + 1;
|
p_start = p + 1;
|
||||||
}
|
}
|
||||||
@ -260,18 +260,32 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix)
|
|||||||
max = get_max_object_index();
|
max = get_max_object_index();
|
||||||
for (i = 0; i < max; i++) {
|
for (i = 0; i < max; i++) {
|
||||||
struct object * obj = get_indexed_object(i);
|
struct object * obj = get_indexed_object(i);
|
||||||
|
const char *name;
|
||||||
if (!obj)
|
if (!obj)
|
||||||
continue;
|
continue;
|
||||||
if (!data.name_only)
|
if (!data.name_only)
|
||||||
printf("%s ", sha1_to_hex(obj->sha1));
|
printf("%s ", sha1_to_hex(obj->sha1));
|
||||||
printf("%s\n", get_rev_name(obj));
|
name = get_rev_name(obj);
|
||||||
|
if (name)
|
||||||
|
printf("%s\n", name);
|
||||||
|
else if (allow_undefined)
|
||||||
|
printf("undefined\n");
|
||||||
|
else
|
||||||
|
die("cannot describe '%s'", sha1_to_hex(obj->sha1));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < revs.nr; i++) {
|
for (i = 0; i < revs.nr; i++) {
|
||||||
|
const char *name;
|
||||||
if (!data.name_only)
|
if (!data.name_only)
|
||||||
printf("%s ", revs.objects[i].name);
|
printf("%s ", revs.objects[i].name);
|
||||||
printf("%s\n", get_rev_name(revs.objects[i].item));
|
name = get_rev_name(revs.objects[i].item);
|
||||||
|
if (name)
|
||||||
|
printf("%s\n", name);
|
||||||
|
else if (allow_undefined)
|
||||||
|
printf("undefined\n");
|
||||||
|
else
|
||||||
|
die("cannot describe '%s'", sha1_to_hex(revs.objects[i].item->sha1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user