1/*
2* GIT - The information manager from hell
3*/
45
#include "cache.h"
6#include "refs.h"
78
#include <stdio.h>
910
int main(int ac, char **av)
11{
12if (ac != 2)
13usage("git-check-ref-format refname");
14if (check_ref_format(av[1]))
15exit(1);
16return 0;
17}