2006-05-18 14:15:55 +02:00
|
|
|
/*
|
|
|
|
* GIT - The information manager from hell
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
|
|
|
#include "builtin.h"
|
2009-03-21 22:19:53 +01:00
|
|
|
#include "strbuf.h"
|
2006-05-18 14:15:55 +02:00
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_check_ref_format(int argc, const char **argv, const char *prefix)
|
2006-05-18 14:15:55 +02:00
|
|
|
{
|
2009-03-21 22:19:53 +01:00
|
|
|
if (argc == 3 && !strcmp(argv[1], "--branch")) {
|
|
|
|
struct strbuf sb = STRBUF_INIT;
|
2009-03-21 22:35:51 +01:00
|
|
|
|
|
|
|
if (strbuf_check_branch_ref(&sb, argv[2]))
|
2009-03-21 22:19:53 +01:00
|
|
|
die("'%s' is not a valid branch name", argv[2]);
|
|
|
|
printf("%s\n", sb.buf + 11);
|
|
|
|
exit(0);
|
|
|
|
}
|
2006-05-18 14:15:55 +02:00
|
|
|
if (argc != 2)
|
2008-08-30 13:12:53 +02:00
|
|
|
usage("git check-ref-format refname");
|
2006-05-18 14:15:55 +02:00
|
|
|
return !!check_ref_format(argv[1]);
|
|
|
|
}
|