"git clone foo bar" currently reports "Cloning into /path/to/bar/.git". Change this message to "Cloning into bar" to more closely match the user's expectation. Signed-off-by: Pete Harlan <pgit@xxxxxxxxxxxx> --- builtin/clone.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/builtin/clone.c b/builtin/clone.c index 0bedde4..306aacf 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -464,7 +464,7 @@ 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...\n", dir); init_db(option_template, INIT_DB_QUIET); /* -- 1.7.1.14.gcafbfa.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html