diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-06-28 21:08:35 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-28 21:08:35 -0700 |
commit | 8e69d78be3f315ea8c7b96400c0c65763b3e8f00 (patch) | |
tree | d17328863f53629dcbf0c71bda527233c5bde44e /Documentation | |
parent | 861d1af36ae168353fc352126c0bf2d189c2324a (diff) | |
parent | 7829f20f5beabe3e21866ae53109a58370571158 (diff) | |
download | git-8e69d78be3f315ea8c7b96400c0c65763b3e8f00.tar.gz git-8e69d78be3f315ea8c7b96400c0c65763b3e8f00.tar.xz |
Merge branch 'maint'
* maint:
git-svn: don't sanitize remote names in config
git-svn: avoid filling up the disk with temp files.
git cat-file: Fix memory leak in batch mode
fix git config example syntax
avoid off-by-one error in run_upload_archive
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 |