swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 1f9b620fdbf27835f54b11008d64c4014b8f4c32 authored by Junio C Hamano on 20 April 2009, 00:34:26 UTC
GIT 1.6.2.4
Tip revision: 1f9b620
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