Sign in
code
/
git
/
d6ebd2590cb427a564a7bc21f893b238ce26e26f
/
.
/
check-ref-format.c
blob: a0adb3dcb345a380e1b6f2208feff4f61499e0d3 [
file
]
/*
* GIT - The information manager from hell
*/
#include
"cache.h"
#include
"refs.h"
#include
<stdio.h>
int
main
(
int
ac
,
char
**
av
)
{
if
(
ac
!=
2
)
usage
(
"git-check-ref-format refname"
);
if
(
check_ref_format
(
av
[
1
]))
exit
(
1
);
return
0
;
}