mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
18 lines
248 B
C
18 lines
248 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|