summaryrefslogtreecommitdiff
path: root/builtin-http-fetch.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-09-12 16:15:23 -0700
committerJunio C Hamano <gitster@pobox.com>2008-09-12 16:15:23 -0700
commitce785c5944847cd108512672021b32f7c381b756 (patch)
tree3f724384d012fec7eec658c941f5208682c2c72a /builtin-http-fetch.c
parentb66e00f12a4e0eef7c9f994db5386e066d726778 (diff)
parent05207a28818623e417b69f337a9e8604d799d09d (diff)
downloadgit-ce785c5944847cd108512672021b32f7c381b756.tar.gz
Merge branch 'ho/maint-dashless' into maint
* ho/maint-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 3a062487a7..03f34d767d 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);