blob: 3446b84cdae7fac98dd31bc32bc62c5d80abe0ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "builtin.h"
#include "gettext.h"
#include "pack-refs.h"
int cmd_pack_refs(int argc,
const char **argv,
const char *prefix,
struct repository *repo)
{
static char const * const pack_refs_usage[] = {
N_("git pack-refs " PACK_REFS_OPTS),
NULL
};
return pack_refs_core(argc, argv, prefix, repo, pack_refs_usage);
}
|