Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 4f8f03d6435e3e1c0d4f95d43022b81c95d6347f authored by Junio C Hamano on 03 August 2007, 22:33:57 UTC
GIT 1.5.3-rc4
Tip revision: 4f8f03d
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