aboutsummaryrefslogtreecommitdiff
path: root/builtin-http-fetch.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-09-09 22:57:35 -0700
committerJunio C Hamano <gitster@pobox.com>2008-09-09 22:57:35 -0700
commita15a435ad394548fb6d22fa69f9a0e6db9752298 (patch)
treeb1921e93bd0cc0da06a801f32d17e6dfef16aa88 /builtin-http-fetch.c
parente8eec71d6e79c176d34dc8fda8780ed4dee447a2 (diff)
parent05207a28818623e417b69f337a9e8604d799d09d (diff)
downloadgit-a15a435ad394548fb6d22fa69f9a0e6db9752298.tar.gz
git-a15a435ad394548fb6d22fa69f9a0e6db9752298.tar.xz
Merge branch 'ho/dashless'
* ho/dashless: Start conforming code to "git subcmd" style part 2
Diffstat (limited to 'builtin-http-fetch.c')
-rw-r--r--builtin-http-fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-http-fetch.c b/builtin-http-fetch.c
index ea2b68965..f3e63d720 100644
--- a/builtin-http-fetch.c
+++ b/builtin-http-fetch.c
@@ -42,7 +42,7 @@ int cmd_http_fetch(int argc, const char **argv, const char *prefix)
arg++;
}
if (argc < arg + 2 - commits_on_stdin) {
- usage("git-http-fetch [-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin] commit-id url");
+ usage("git http-fetch [-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin] commit-id url");
return 1;
}
if (commits_on_stdin) {
@@ -75,7 +75,7 @@ int cmd_http_fetch(int argc, const char **argv, const char *prefix)
fprintf(stderr,
"Some loose object were found to be corrupt, but they might be just\n"
"a false '404 Not Found' error message sent with incorrect HTTP\n"
-"status code. Suggest running git-fsck.\n");
+"status code. Suggest running 'git fsck'.\n");
}
walker_free(walker);