1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-16 22:14:53 +01:00
git/show-rev-cache.c

19 lines
324 B
C
Raw Normal View History

#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);
}