diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-22 08:31:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-22 08:31:20 -0700 |
commit | 958ff4a5973c9858c36c405c2f593cf5172e5e1c (patch) | |
tree | b8e1bd4f5fc14ac12c88621286e2408e143b9b6e /builtin | |
parent | 0d2416e06003da954f0335248c3dc7f76a3735e3 (diff) | |
parent | 921eabde9d0b9b43b293b37ac701bdfd10a64f54 (diff) | |
download | git-958ff4a5973c9858c36c405c2f593cf5172e5e1c.tar.gz |
Merge branch 'ph/clone-message-reword' into maint
* ph/clone-message-reword:
clone: reword messages to match the end-user perception
Diffstat (limited to 'builtin')
-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); /* |