Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 98cf8156078eb5256d77d01786863185a1728140 authored by Junio C Hamano on 07 April 2006, 23:48:09 UTC
count-delta: match get_delta_hdr_size() changes.
Tip revision: 98cf815
check-ref-format.c
/*
 * 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;
}
back to top