]> git.ipfire.org Git - thirdparty/git.git/commit
clone: Quote user supplied path in a single quote pair
authorRichard Hartmann <richih.mailinglist@gmail.com>
Thu, 27 Oct 2011 16:46:53 +0000 (18:46 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 27 Oct 2011 19:02:02 +0000 (12:02 -0700)
commit8debf696380cad2283b4cfaea78962b8d5923149
tree2b0d1825ba301c2d43c53113936f38b3d8e7f2b4
parent25f745fbec0e92a29e33aa85413c2bf7762608bf
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 <richih.mailinglist@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/clone.c