Thomas Rast <trast@xxxxxxxxxxxxxxx> writes: > @@ -259,7 +260,14 @@ static void describe(const char *arg, int last_one) > printf("%s\n", find_unique_abbrev(sha1, abbrev)); > return; > } > - die("cannot describe '%s'", sha1_to_hex(sha1)); > + if (unannotated_cnt) > + die("cannot describe '%s'" > + " with only\nannotated tags. Try --tags.", Did you mean UNannotated tags here? > + sha1_to_hex(sha1)); > + else > + die("cannot describe '%s'" > + " with tags\nTry --always, or create some tags.", > + sha1_to_hex(sha1)); > } > > qsort(all_matches, match_cnt, sizeof(all_matches[0]), compare_pt); -- 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