diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-17 17:46:35 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-17 21:52:10 -0700 |
commit | c99ec048bf386ed2b28086cb3756af2dc91fc3d2 (patch) | |
tree | ec8d8f448b114f1817337e30cae901206f8d9afb /git-clone.sh | |
parent | 82ed2bcd920d73d218e94c95178be6a61ec7ed54 (diff) |
GIT 0.99.8ev0.99.8e
Linus Torvalds:
make checkout-index '-a' flag saner.
Junio C Hamano:
whatchanged: document -m option from git-diff-tree.
Functions to quote and unquote pathnames in C-style.
Update git-apply to use C-style quoting for funny pathnames.
Do not quote SP.
git-checkout-index: documentation updates.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-x | git-clone.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-clone.sh b/git-clone.sh index 78c83e84c2..18e692a67b 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -54,9 +54,9 @@ Perhaps git-update-server-info needs to be run there?" do name=`expr "$refname" : 'refs/\(.*\)'` && case "$name" in - *^{}) ;; + *^*) ;; *) - git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1 ;; + git-http-fetch -v -a -w "$name" "$name" "$1/" || exit 1 esac done <"$clone_tmp/refs" rm -fr "$clone_tmp" |