Skip to content

Commit 921eabd

Browse files
Pete Harlangitster
authored andcommitted
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 <[email protected]> Signed-off-by: Pete Harlan <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 28ba96a commit 921eabd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

builtin/clone.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,8 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
464464
set_git_dir(make_absolute_path(git_dir));
465465

466466
if (0 <= option_verbosity)
467-
printf("Cloning into %s...\n", get_git_dir());
467+
printf("Cloning into %s%s...\n",
468+
option_bare ? "bare repository " : "", dir);
468469
init_db(option_template, INIT_DB_QUIET);
469470

470471
/*

0 commit comments

Comments
 (0)