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