check-ref-format.con commit Make git-clone to take long double-dashed origin option (--origin) (98a4fef)
   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}