diff options
author | Pete Harlan <pgit@pcharlan.com> | 2010-05-09 13:10:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-09 15:18:10 -0700 |
commit | 921eabde9d0b9b43b293b37ac701bdfd10a64f54 (patch) | |
tree | ef439a293400cd759f9f872066d74e0a86975df5 | |
parent | clone: quell the progress report from init and report on clone (diff) | |
download | tgif-921eabde9d0b9b43b293b37ac701bdfd10a64f54.tar.xz |
clone: reword messages to match the end-user perception
When cloning into a non-bare repository, e.g. "git clone $URL mine",
we used to report that we are cloning into "mine/.git". Reword the
report to say "Cloning into mine" instead, as that matches what the
end-user asked for closer.
Make the message for "git clone --bare $URL mine" to say "Cloning
into bare repository mine" do make the distinction between this case and
the above stand out a bit more prominently.
Suggested-by: Jeff King <peff@peff.net>
Signed-off-by: Pete Harlan <pgit@pcharlan.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/clone.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 0bedde41f0..3a3625b2ad 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -464,7 +464,8 @@ int cmd_clone(int argc, const char **argv, const char *prefix) set_git_dir(make_absolute_path(git_dir)); if (0 <= option_verbosity) - printf("Cloning into %s...\n", get_git_dir()); + printf("Cloning into %s%s...\n", + option_bare ? "bare repository " : "", dir); init_db(option_template, INIT_DB_QUIET); /* |