Staging
v0.5.1
Revision a9572072f0ab0ac97e64b0dc01254a3ad95befe1 authored by Junio C Hamano on 12 December 2005, 00:49:45 UTC, committed by Junio C Hamano on 12 December 2005, 00:49:45 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s 423325a + b825e6f
Raw File
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