summaryrefslogtreecommitdiffstats
path: root/git-svn.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-03-16 15:00:58 -0700
committerJunio C Hamano <gitster@pobox.com>2016-03-16 15:00:58 -0700
commit8f7d6235fe64a08c44ec729306003e22efa743e0 (patch)
tree8c75d3d2fc5a1977f2d3ad4b612335e9a1f99aab /git-svn.txt
parentdf97ffc354c223ba742bae4842b51593d5b9a722 (diff)
downloadgit-htmldocs-8f7d6235fe64a08c44ec729306003e22efa743e0.tar.gz
Autogenerated HTML docs for v2.8.0-rc3
Diffstat (limited to 'git-svn.txt')
-rw-r--r--git-svn.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/git-svn.txt b/git-svn.txt
index 0c0f60b20..fb23a98a1 100644
--- a/git-svn.txt
+++ b/git-svn.txt
@@ -1034,6 +1034,8 @@ listed below are allowed:
url = http://server.org/svn
fetch = trunk/project-a:refs/remotes/project-a/trunk
branches = branches/*/project-a:refs/remotes/project-a/branches/*
+ branches = branches/release_*:refs/remotes/project-a/branches/release_*
+ branches = branches/re*se:refs/remotes/project-a/branches/*
tags = tags/*/project-a:refs/remotes/project-a/tags/*
------------------------------------------------------------------------
@@ -1044,6 +1046,16 @@ independent path component (surrounded by '/' or EOL). This
type of configuration is not automatically created by 'init' and
should be manually entered with a text-editor or using 'git config'.
+Also note that only one asterisk is allowed per word. For example:
+
+ branches = branches/re*se:refs/remotes/project-a/branches/*
+
+will match branches 'release', 'rese', 're123se', however
+
+ branches = branches/re*s*e:refs/remotes/project-a/branches/*
+
+will produce an error.
+
It is also possible to fetch a subset of branches or tags by using a
comma-separated list of names within braces. For example: