提交 17710391 编写于 作者: N Nicolas Pitre 提交者: Linus Torvalds

[PATCH] fix usage string for renamed git commands

Signed-off-by: NNicolas Pitre <nico@cam.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 89967023
......@@ -6,8 +6,8 @@
#include "cache.h"
#include "diff.h"
static const char *show_diff_usage =
"show-diff [-p] [-q] [-r] [-z] [paths...]";
static const char *diff_files_usage =
"diff-files [-p] [-q] [-r] [-z] [paths...]";
static int generate_patch = 0;
static int line_termination = '\n';
......@@ -80,7 +80,7 @@ int main(int argc, char **argv)
else if (!strcmp(argv[1], "-z"))
line_termination = 0;
else
usage(show_diff_usage);
usage(diff_files_usage);
argv++; argc--;
}
......
......@@ -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=<pattern>] [--exclude-from=<file>) ]";
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) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册