From 8debf696380cad2283b4cfaea78962b8d5923149 Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Thu, 27 Oct 2011 18:46:53 +0200 Subject: [PATCH 1/2] clone: Quote user supplied path in a single quote pair Without this patch, $ git clone foo . results in this: Cloning into .... done. With it: Cloning into '.'... done. Signed-off-by: Richard Hartmann Signed-off-by: Junio C Hamano --- builtin/clone.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); From e8e1c29021da446d0c50573ef9619bf74f515c20 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 27 Oct 2011 12:06:44 -0700 Subject: [PATCH 2/2] Update draft release notes to 1.7.8 Getting very close to -rc0 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/1.7.8.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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