mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
8c9e292dc0
Fix various issues of SYNOPSIS and -h output syntax where: * Options such as --force were missing entirely * ...or the short option, such as -f * We said "opts" or "options", but could instead enumerate the (small) set of supported options * Options that were missing entirely (ls-remote's --sort=<key>) As we can specify "--sort" multiple times (it's backed by a string-list" it should really be "[(--sort=<key>)...]", which is what "git for-each-ref" lists it as, but let's leave that issue for a subsequent cleanup, and stop at making these consistent. Other "ref-filter.h" users share the same issue, e.g. "git-branch.txt". * For "verify-tag" and "verify-commit" we were missing the "--raw" option. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
24 lines
733 B
C
24 lines
733 B
C
#include "builtin.h"
|
|
#include "config.h"
|
|
#include "parse-options.h"
|
|
#include "refs.h"
|
|
#include "repository.h"
|
|
|
|
static char const * const pack_refs_usage[] = {
|
|
N_("git pack-refs [--all] [--no-prune]"),
|
|
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(),
|
|
};
|
|
git_config(git_default_config, NULL);
|
|
if (parse_options(argc, argv, prefix, opts, pack_refs_usage, 0))
|
|
usage_with_options(pack_refs_usage, opts);
|
|
return refs_pack_refs(get_main_ref_store(the_repository), flags);
|
|
}
|