summaryrefslogtreecommitdiffstats
path: root/git-svn.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2009-01-26 17:36:43 +0000
committerJunio C Hamano <junio@hera.kernel.org>2009-01-26 17:36:43 +0000
commita07e81615021017ceca672ee38fc554bca031683 (patch)
tree06cb28c6cdc6fa445b554b6e674788c9a975ae10 /git-svn.txt
parent20d47e3f1442b9a7384b08ea40846c078f227a47 (diff)
downloadgit-htmldocs-a07e81615021017ceca672ee38fc554bca031683.tar.gz
Autogenerated HTML docs for v1.6.1.1-230-gdfb04
Diffstat (limited to 'git-svn.txt')
-rw-r--r--git-svn.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/git-svn.txt b/git-svn.txt
index 63d2f5e96..7b654f792 100644
--- a/git-svn.txt
+++ b/git-svn.txt
@@ -103,6 +103,19 @@ repository to be able to interoperate with someone else's local Git
repository, either don't use this option or you should both use it in
the same local timezone.
+--ignore-paths=<regex>;;
+ This allows one to specify Perl regular expression that will
+ cause skipping of all matching paths from checkout from SVN.
+ Examples:
+
+ --ignore-paths="^doc" - skip "doc*" directory for every fetch.
+
+ --ignore-paths="^[^/]+/(?:branches|tags)" - skip "branches"
+ and "tags" of first level directories.
+
+ Regular expression is not persistent, you should specify
+ it every time when fetching.
+
'clone'::
Runs 'init' and 'fetch'. It will automatically create a
directory based on the basename of the URL passed to it;