From 17710391299af14fc38cdee10cc7cc9d44668329 Mon Sep 17 00:00:00 2001 From: Nicolas Pitre Date: Sat, 30 Apr 2005 13:59:38 -0700 Subject: [PATCH] fix usage string for renamed git commands Signed-off-by: Nicolas Pitre Signed-off-by: Linus Torvalds --- ls-files.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ls-files.c') diff --git a/ls-files.c b/ls-files.c index c63c7aa4b7..8b53f2fd52 100644 --- a/ls-files.c +++ b/ls-files.c @@ -206,8 +206,8 @@ static void show_files(void) } } -static const char *show_files_usage = - "show-files [-z] (--[cached|deleted|others|stage|unmerged])* " +static const char *ls_files_usage = + "ls-files [-z] (--[cached|deleted|others|stage|unmerged])* " "[ --ignored [--exclude=] [--exclude-from=) ]"; int main(int argc, char **argv) @@ -242,7 +242,7 @@ int main(int argc, char **argv) } else if (!strncmp(arg, "--exclude-from=", 15)) { add_excludes_from_file(arg+15); } else - usage(show_files_usage); + usage(ls_files_usage); } if (show_ignored && !nr_excludes) { -- cgit v1.2.1