diff options
author | Heikki Orsila <heikki.orsila@iki.fi> | 2008-09-09 13:28:30 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-09 08:41:29 -0700 |
commit | 05207a28818623e417b69f337a9e8604d799d09d (patch) | |
tree | 6d1163a9d131636359c1d5cb784647ad9a4c69f7 /builtin-http-fetch.c | |
parent | 47a528ad24185133867ebb5bb7692db2cb8bef39 (diff) | |
download | git-05207a28818623e417b69f337a9e8604d799d09d.tar.gz git-05207a28818623e417b69f337a9e8604d799d09d.tar.xz |
Start conforming code to "git subcmd" style part 2
User notifications are presented as 'git cmd', and code comments
are presented as '"cmd"' or 'git's cmd', rather than 'git-cmd'.
Signed-off-by: Heikki Orsila <heikki.orsila@iki.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-http-fetch.c')
-rw-r--r-- | builtin-http-fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-http-fetch.c b/builtin-http-fetch.c index 3a062487a..03f34d767 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); |