aboutsummaryrefslogtreecommitdiff
path: root/builtin/checkout-index.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-08-20 19:32:55 +0700
committerJunio C Hamano <gitster@pobox.com>2012-08-22 12:02:28 -0700
commitf63cf8c9fbcd86e8ca3bb78917dc280747bb34a8 (patch)
treee6640fdfc517e5359ae03ba92d2ceb6e262405ec /builtin/checkout-index.c
parentb0ff96547ec66979487707ad71f89c23f5e0669d (diff)
downloadgit-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.gz
git-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.xz
Use imperative form in help usage to describe an action
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/checkout-index.c')
-rw-r--r--builtin/checkout-index.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/checkout-index.c b/builtin/checkout-index.c
index 86b7d36c2..b1feda7d5 100644
--- a/builtin/checkout-index.c
+++ b/builtin/checkout-index.c
@@ -184,8 +184,8 @@ int cmd_checkout_index(int argc, const char **argv, const char *prefix)
int force = 0, quiet = 0, not_new = 0;
struct option builtin_checkout_index_options[] = {
OPT_BOOLEAN('a', "all", &all,
- N_("checks out all files in the index")),
- OPT__FORCE(&force, N_("forces overwrite of existing files")),
+ N_("check out all files in the index")),
+ OPT__FORCE(&force, N_("force overwrite of existing files")),
OPT__QUIET(&quiet,
N_("no warning for existing files and files not in index")),
OPT_BOOLEAN('n', "no-create", &not_new,