diff options
author | Anders Kaseorg <andersk@ksplice.com> | 2010-12-09 01:42:25 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-09 11:20:25 -0800 |
commit | 56a5f3afa74c70261dd2319ad76a6810e102026c (patch) | |
tree | f49156d35a6e609739d336657a49144bb1e24d21 /builtin/describe.c | |
parent | 6079ec6680da5e40d15d981c24051e9bf5c226fc (diff) | |
download | git-56a5f3afa74c70261dd2319ad76a6810e102026c.tar.gz |
describe: Use for_each_rawref
Don't waste time checking for dangling refs; they wouldn't affect the
output of 'git describe' anyway. Although this does not gain much
performance by itself, it does in conjunction with the next commits.
Signed-off-by: Anders Kaseorg <andersk@ksplice.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/describe.c')
-rw-r--r-- | builtin/describe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/describe.c b/builtin/describe.c index 43caff2ffe..700f740154 100644 --- a/builtin/describe.c +++ b/builtin/describe.c @@ -418,7 +418,7 @@ int cmd_describe(int argc, const char **argv, const char *prefix) return cmd_name_rev(i + argc, args, prefix); } - for_each_ref(get_name, NULL); + for_each_rawref(get_name, NULL); if (!found_names && !always) die("No names found, cannot describe anything."); |