From: Matthieu Moy Date: Mon, 26 Jul 2010 16:32:09 +0000 (+0200) Subject: Clarify help message when no remote is specified in fetch/pull. X-Git-Tag: v1.7.2.1~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d3b9dd136ea5735c88a831b5a0f6f2e5dd623701;p=git.git Clarify help message when no remote is specified in fetch/pull. The message is especially confusing when "git fetch" is ran from "git pull", for users not aware of "git fetch". The new message makes it clear that "fetch" means "fetch new revisions", and gives hint on the solution. We don't add a advice.* configuration option since this message doesn't appear in normal use, and shouldn't disturb advanced users. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- diff --git a/builtin/fetch.c b/builtin/fetch.c index 6eb1dfea0..1b67f5fda 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -845,7 +845,8 @@ static int fetch_one(struct remote *remote, int argc, const char **argv) int exit_code; if (!remote) - die("Where do you want to fetch from today?"); + die("No remote repository specified. Please, specify either a URL or a\n" + "remote name from which new revisions should be fetched."); transport = transport_get(remote, NULL); transport_set_verbosity(transport, verbosity, progress);