diff options
Diffstat (limited to 'rev-tree.c')
-rw-r--r-- | rev-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rev-tree.c b/rev-tree.c index c2909da172..f7dc98b1aa 100644 --- a/rev-tree.c +++ b/rev-tree.c @@ -64,7 +64,7 @@ void process_commit(unsigned char *sha1) } /* - * Usage: rev-tree [--edges] [--cache <cache-file>] <commit-id> [<commit-id2>] + * Usage: git-rev-tree [--edges] [--cache <cache-file>] <commit-id> [<commit-id2>] * * The cache-file can be quite important for big trees. This is an * expensive operation if you have to walk the whole chain of @@ -98,7 +98,7 @@ int main(int argc, char **argv) basemask |= 1<<nr; } if (nr >= MAX_COMMITS || get_sha1(arg, sha1[nr])) - usage("rev-tree [--edges] [--cache <cache-file>] <commit-id> [<commit-id>]"); + usage("git-rev-tree [--edges] [--cache <cache-file>] <commit-id> [<commit-id>]"); process_commit(sha1[nr]); nr++; } |