diff --git a/Documentation/RelNotes/1.7.8.txt b/Documentation/RelNotes/1.7.8.txt index 3045245aa6..ddb8d37eaa 100644 --- a/Documentation/RelNotes/1.7.8.txt +++ b/Documentation/RelNotes/1.7.8.txt @@ -212,11 +212,9 @@ included in this release. "gitweb" was broken for some time. (merge 53c632f jm/maint-gitweb-filter-forks-fix later to maint). - - --- exec >/var/tmp/1 -O=v1.7.7.1-453-g0b26d1e +O=v1.7.7.1-487-g4801546 echo O=$(git describe --always master) git log --first-parent --oneline --reverse ^$O master echo diff --git a/builtin/clone.c b/builtin/clone.c index 488f48e9a5..efe8b6cce5 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -577,9 +577,9 @@ int cmd_clone(int argc, const char **argv, const char *prefix) if (0 <= option_verbosity) { if (option_bare) - printf(_("Cloning into bare repository %s...\n"), dir); + printf(_("Cloning into bare repository '%s'...\n"), dir); else - printf(_("Cloning into %s...\n"), dir); + printf(_("Cloning into '%s'...\n"), dir); } init_db(option_template, INIT_DB_QUIET); write_config(&option_config);