X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-show-ref.c;h=65051d14fde44c14d12099df656ac423bc1c347e;hb=4340a813d007b592534de664d152d66417dbe809;hp=ae0edddac1ad63b849dc341c8dd6519181c1e18e;hpb=2470653196fa8461ff5895c521519e947482eae1;p=git.git diff --git a/builtin-show-ref.c b/builtin-show-ref.c index ae0edddac..65051d14f 100644 --- a/builtin-show-ref.c +++ b/builtin-show-ref.c @@ -1,3 +1,4 @@ +#include "builtin.h" #include "cache.h" #include "refs.h" #include "object.h" @@ -221,9 +222,11 @@ int cmd_show_ref(int argc, const char **argv, const char *prefix) } if (verify) { - unsigned char sha1[20]; - + if (!pattern) + die("--verify requires a reference"); while (*pattern) { + unsigned char sha1[20]; + if (!prefixcmp(*pattern, "refs/") && resolve_ref(*pattern, sha1, 1, NULL)) { if (!quiet)