]> git.ipfire.org Git - thirdparty/git.git/blob - check-ref-format.c
Merge branch 'fixes'
[thirdparty/git.git] / check-ref-format.c
1 /*
2 * GIT - The information manager from hell
3 */
4
5 #include "cache.h"
6 #include "refs.h"
7
8 #include <stdio.h>
9
10 int main(int ac, char **av)
11 {
12 if (ac != 2)
13 usage("git-check-ref-format refname");
14 if (check_ref_format(av[1]))
15 exit(1);
16 return 0;
17 }