diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-05-22 16:33:53 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-24 13:19:22 -0700 |
commit | 7b722d906bd5b32f3c7a63fb77835b38c1e04e4a (patch) | |
tree | 100e4c12a6c465ba35a05313ffb55e78011149bc /builtin | |
parent | 360af2dadaae70f29de2f21d4eb8ac38aefcc263 (diff) | |
download | git-7b722d906bd5b32f3c7a63fb77835b38c1e04e4a.tar.gz |
git-worktree.txt: keep subcommand listing in alphabetical order
This is probably not the best order. But it makes it no-brainer to know
where to insert new commands. At some point we might want to reorder at
least the synopsis part again, grouping commonly use subcommands together.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/worktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c index 12c0af723e..bf80111fd8 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -13,8 +13,8 @@ static const char * const worktree_usage[] = { N_("git worktree add [<options>] <path> [<branch>]"), - N_("git worktree prune [<options>]"), N_("git worktree list [<options>]"), + N_("git worktree prune [<options>]"), NULL }; |