diff options
author | Joey Hess <joey@kitenet.net> | 2008-06-28 16:02:47 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-28 13:43:22 -0700 |
commit | 762656e03e80a77aeca6163597640d4e48eee55c (patch) | |
tree | 9fd232206263f45d75d951c7497eb8c17fb46e9e /Documentation | |
parent | 74d817cf8cf68104564cf6c93c1361f66dad1901 (diff) | |
download | git-762656e03e80a77aeca6163597640d4e48eee55c.tar.gz git-762656e03e80a77aeca6163597640d4e48eee55c.tar.xz |
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 <joey@kitenet.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-svn.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 |