summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 908e531)
raw | patch | inline | side by side (parent: 908e531)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 27 Dec 2005 22:36:49 +0000 (14:36 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 28 Dec 2005 01:57:27 +0000 (17:57 -0800) |
Often there are references other than annotated tags under
refs/tags hierarchy that are used to "keep things just in case".
default to use annotated tags only, still leaving the option to
use any ref with --all flag.
Signed-off-by: Junio C Hamano <junkio@cox.net>
refs/tags hierarchy that are used to "keep things just in case".
default to use annotated tags only, still leaving the option to
use any ref with --all flag.
Signed-off-by: Junio C Hamano <junkio@cox.net>
describe.c | patch | blob | history |
diff --git a/describe.c b/describe.c
index ebfa4290e924d5934270c6360b4e63d8796dbffb..e1b6588c9b8d0bd70702a56e182b2352dacc4386 100644 (file)
--- a/describe.c
+++ b/describe.c
#include "cache.h"
#include "commit.h"
+#include "tag.h"
#include "refs.h"
#define SEEN (1u << 0)
static const char describe_usage[] = "git-describe [--all] <committish>*";
-static int all = 0; /* Default to tags only */
+static int all = 0; /* Default to annotated tags only */
static int names = 0, allocs = 0;
static struct commit_name {
struct commit *commit = lookup_commit_reference_gently(sha1, 1);
if (!commit)
return 0;
- if (!all && strncmp(path, "refs/tags/", 10))
- return 0;
- add_to_known_names(path, commit);
+ if (!all) {
+ struct object *object;
+ if (strncmp(path, "refs/tags/", 10))
+ return 0;
+ object = parse_object(sha1);
+ if (object->type != tag_type)
+ return 0;
+ }
+ add_to_known_names(all ? path : path + 10, commit);
return 0;
}