You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
324 B

#include "cache.h"
#include "rev-cache.h"
static char *show_rev_cache_usage =
"git-show-rev-cache <rev-cache-file>";
int main(int ac, char **av)
{
while (1 < ac && av[0][1] == '-') {
/* do flags here */
break;
ac--; av++;
}
if (ac != 2)
usage(show_rev_cache_usage);
return read_rev_cache(av[1], stdout, 1);
}