repo.or.cz
/
git
/
jrn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
server-info: skip empty lines.
[git/jrn.git]
/
check-ref-format.c
blob
a0adb3dcb345a380e1b6f2208feff4f61499e0d3
1
/*
2
* GIT - The information manager from hell
3
*/
4
5
#include
"cache.h"
6
#include
"refs.h"
7
8
#include <stdio.h>
9
10
int
main
(
int
ac
,
char
**
av
)
11
{
12
if
(
ac
!=
2
)
13
usage
(
"git-check-ref-format refname"
);
14
if
(
check_ref_format
(
av
[
1
]))
15
exit
(
1
);
16
return
0
;
17
}