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