From: Joey Hess Date: Sat, 28 Jun 2008 20:02:47 +0000 (-0400) Subject: fix git config example syntax X-Git-Tag: v1.5.6.2~13 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=762656e03e80a77aeca6163597640d4e48eee55c;p=git.git fix git config example syntax git-config expects a space, not '=' between option and value. Also, quote the value since it contains globs, which some shells will not pass through unchanged, or will abort if the glob doesn't expand. Signed-off-by: Joey Hess Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index 97bed54fb..c350ad0f8 100644 --- a/Documentation/git-svn.txt +++ b/Documentation/git-svn.txt @@ -513,7 +513,7 @@ have each person clone that repository with 'git clone': cd project git-init git remote add origin server:/pub/project - git config --add remote.origin.fetch=+refs/remotes/*:refs/remotes/* + git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*' git fetch # Initialize git-svn locally (be sure to use the same URL and -T/-b/-t options as were used on server) git-svn init http://svn.foo.org/project