check-ref-format.con commit Merge http://www.kernel.org/pub/scm/gitk/gitk (8fc66df)
   1/*
   2 * GIT - The information manager from hell
   3 */
   4
   5#include "cache.h"
   6#include "refs.h"
   7
   8#include <stdio.h>
   9
  10int 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}