1/*
2* GIT - The information manager from hell
3*/
45
#include "cache.h"
6#include "refs.h"
7#include "builtin.h"
89
int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
10{
11if (argc != 2)
12usage("git-check-ref-format refname");
13return !!check_ref_format(argv[1]);
14}