]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - builtin-check-ref-format.c
git-fetch: document automatic tag following.
[thirdparty/git.git] / builtin-check-ref-format.c
... / ...
CommitLineData
1/*
2 * GIT - The information manager from hell
3 */
4
5#include "cache.h"
6#include "refs.h"
7#include "builtin.h"
8
9int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
10{
11 if (argc != 2)
12 usage("git-check-ref-format refname");
13 return !!check_ref_format(argv[1]);
14}