提交 d46ad9c9 编写于 作者: J Junio C Hamano 提交者: Linus Torvalds

[PATCH] checkout-cache: add usage string.

This adds the usage string to checkout-cache and you can say
"--help" to get it.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 f16ebbdd
......@@ -75,6 +75,9 @@ static int checkout_all(void)
return 0;
}
static const char *checkout_cache_usage =
"git-checkout-cache [-u] [-q] [-a] [-f] [-n] [--prefix=<string>] [--] <file>...";
int main(int argc, char **argv)
{
int i, force_filename = 0;
......@@ -123,6 +126,8 @@ int main(int argc, char **argv)
state.base_dir_len = strlen(state.base_dir);
continue;
}
if (arg[0] == '-')
usage(checkout_cache_usage);
}
if (state.base_dir_len) {
/* when --prefix is specified we do not
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册