Revision e634aec752642dcf86c3fc82025e43381d6768c2 authored by Junio C Hamano on 31 October 2005, 02:06:39 UTC, committed by Junio C Hamano on 31 October 2005, 02:06:39 UTC
... to contain the RPM workaround.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s a1c7a69 + 80e0c0a
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