hg-to-git: avoid raising a string exception
[git/dscho.git] / builtin-check-ref-format.c
blobfe04be77a9312c11fa054897c5982fa6c74b8e5e
1 /*
2 * GIT - The information manager from hell
3 */
5 #include "cache.h"
6 #include "refs.h"
7 #include "builtin.h"
9 int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
11 if (argc != 2)
12 usage("git-check-ref-format refname");
13 return !!check_ref_format(argv[1]);