aboutsummaryrefslogtreecommitdiff
path: root/builtin-commit-tree.c
diff options
context:
space:
mode:
authorHeikki Orsila <heikki.orsila@iki.fi>2008-09-09 13:28:30 +0300
committerJunio C Hamano <gitster@pobox.com>2008-09-09 08:41:29 -0700
commit05207a28818623e417b69f337a9e8604d799d09d (patch)
tree6d1163a9d131636359c1d5cb784647ad9a4c69f7 /builtin-commit-tree.c
parent47a528ad24185133867ebb5bb7692db2cb8bef39 (diff)
downloadgit-05207a28818623e417b69f337a9e8604d799d09d.tar.gz
git-05207a28818623e417b69f337a9e8604d799d09d.tar.xz
Start conforming code to "git subcmd" style part 2
User notifications are presented as 'git cmd', and code comments are presented as '"cmd"' or 'git's cmd', rather than 'git-cmd'. Signed-off-by: Heikki Orsila <heikki.orsila@iki.fi> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-commit-tree.c')
-rw-r--r--builtin-commit-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-commit-tree.c b/builtin-commit-tree.c
index 291c43cf7..9b84c48dc 100644
--- a/builtin-commit-tree.c
+++ b/builtin-commit-tree.c
@@ -24,7 +24,7 @@ static void check_valid(unsigned char *sha1, enum object_type expect)
typename(expect));
}
-static const char commit_tree_usage[] = "git-commit-tree <sha1> [-p <sha1>]* < changelog";
+static const char commit_tree_usage[] = "git commit-tree <sha1> [-p <sha1>]* < changelog";
static void new_parent(struct commit *parent, struct commit_list **parents_p)
{