Donât waste time checking for dangling refs; they wouldnât affect the output of âgit describeâ anyway. Although this doesnât gain much performance by itself, it does in conjunction with the next commits. Signed-off-by: Anders Kaseorg <andersk@xxxxxxxxxxx> --- builtin/describe.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/builtin/describe.c b/builtin/describe.c index 43caff2..700f740 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."); -- 1.7.3.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html