aboutsummaryrefslogtreecommitdiff
path: root/check-ref-format.c
diff options
context:
space:
mode:
Diffstat (limited to 'check-ref-format.c')
-rw-r--r--check-ref-format.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/check-ref-format.c b/check-ref-format.c
deleted file mode 100644
index a0adb3dcb..000000000
--- a/check-ref-format.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * 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;
-}