Staging
v0.5.1
Revision 0b92f1a9d213644d2cd6c1870091c090a6b7eca9 authored by Lars Hjemli on 20 October 2006, 21:24:32 UTC, committed by Junio C Hamano on 20 October 2006, 23:50:36 UTC
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 96a035d
Raw File
builtin-check-ref-format.c
/*
 * GIT - The information manager from hell
 */

#include "cache.h"
#include "refs.h"
#include "builtin.h"

int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
{
	if (argc != 2)
		usage("git-check-ref-format refname");
	return !!check_ref_format(argv[1]);
}
back to top