1/*
2* GIT - The information manager from hell
3*/
45
#include "cache.h"
6#include "refs.h"
7#include "builtin.h"
8#include "strbuf.h"
910
static const char builtin_check_ref_format_usage[] =
11"git check-ref-format [--print] <refname>\n"
12" or: git check-ref-format --branch <branchname-shorthand>";
1314
/*
15* Replace each run of adjacent slashes in src with a single slash,
16* and write the result to dst.
17*
18* This function is similar to normalize_path_copy(), but stripped down
19* to meet check_ref_format's simpler needs.
20*/
21static void collapse_slashes(char *dst, const char *src)
22{
23char ch;
24char prev = '\0';
2526
while ((ch = *src++) != '\0') {
27if (prev == '/' && ch == prev)
28continue;
2930
*dst++ = ch;
31prev = ch;
32}
33*dst = '\0';
34}
3536
static int check_ref_format_branch(const char *arg)
37{
38struct strbuf sb = STRBUF_INIT;
39int nongit;
4041
setup_git_directory_gently(&nongit);
42if (strbuf_check_branch_ref(&sb, arg))
43die("'%s' is not a valid branch name", arg);
44printf("%s\n", sb.buf + 11);
45return 0;
46}
4748
static int check_ref_format_print(const char *arg)
49{
50char *refname = xmalloc(strlen(arg) + 1);
5152
if (check_ref_format(arg))
53return 1;
54collapse_slashes(refname, arg);
55printf("%s\n", refname);
56return 0;
57}
5859
int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
60{
61if (argc == 2 && !strcmp(argv[1], "-h"))
62usage(builtin_check_ref_format_usage);
6364
if (argc == 3 && !strcmp(argv[1], "--branch"))
65return check_ref_format_branch(argv[2]);
66if (argc == 3 && !strcmp(argv[1], "--print"))
67return check_ref_format_print(argv[2]);
68if (argc != 2)
69usage(builtin_check_ref_format_usage);
70return !!check_ref_format(argv[1]);
71}