mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
9c9b4f2f8b
This patch puts the usage info strings that were not already in docopt- like format into docopt-like format, which will be a litle easier for end users and a lot easier for translators. Changes include: - Placing angle brackets around fill-in-the-blank parameters - Putting dashes in multiword parameter names - Adding spaces to [-f|--foobar] to make [-f | --foobar] - Replacing <foobar>* with [<foobar>...] Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
21 lines
600 B
C
21 lines
600 B
C
#include "builtin.h"
|
|
#include "parse-options.h"
|
|
#include "refs.h"
|
|
|
|
static char const * const pack_refs_usage[] = {
|
|
N_("git pack-refs [<options>]"),
|
|
NULL
|
|
};
|
|
|
|
int cmd_pack_refs(int argc, const char **argv, const char *prefix)
|
|
{
|
|
unsigned int flags = PACK_REFS_PRUNE;
|
|
struct option opts[] = {
|
|
OPT_BIT(0, "all", &flags, N_("pack everything"), PACK_REFS_ALL),
|
|
OPT_BIT(0, "prune", &flags, N_("prune loose refs (default)"), PACK_REFS_PRUNE),
|
|
OPT_END(),
|
|
};
|
|
if (parse_options(argc, argv, prefix, opts, pack_refs_usage, 0))
|
|
usage_with_options(pack_refs_usage, opts);
|
|
return pack_refs(flags);
|
|
}
|