aboutsummaryrefslogtreecommitdiff
path: root/builtin/replace.c
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2013-09-06 07:10:58 +0200
committerJunio C Hamano <gitster@pobox.com>2013-09-06 13:32:24 -0700
commited0ff80984d37f9f40b1bf209bc86ea2fa8f3783 (patch)
tree435ba64786e9d8dbf55015c9aec28b2b5bc29098 /builtin/replace.c
parentb8fcce1e7f7baafba8b6ba0b4e9bec2f27893f43 (diff)
downloadgit-ed0ff80984d37f9f40b1bf209bc86ea2fa8f3783.tar.gz
git-ed0ff80984d37f9f40b1bf209bc86ea2fa8f3783.tar.xz
replace: allow long option names
It is now standard practice in Git to have both short and long option names. So let's give a long option name to the git replace options too. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/replace.c')
-rw-r--r--builtin/replace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/replace.c b/builtin/replace.c
index 95736d98d..d4d1b75ad 100644
--- a/builtin/replace.c
+++ b/builtin/replace.c
@@ -128,9 +128,9 @@ int cmd_replace(int argc, const char **argv, const char *prefix)
{
int list = 0, delete = 0, force = 0;
struct option options[] = {
- OPT_BOOLEAN('l', NULL, &list, N_("list replace refs")),
- OPT_BOOLEAN('d', NULL, &delete, N_("delete replace refs")),
- OPT_BOOLEAN('f', NULL, &force, N_("replace the ref if it exists")),
+ OPT_BOOLEAN('l', "list", &list, N_("list replace refs")),
+ OPT_BOOLEAN('d', "delete", &delete, N_("delete replace refs")),
+ OPT_BOOLEAN('f', "force", &force, N_("replace the ref if it exists")),
OPT_END()
};