git-svn: documented --ignore-paths

Documented --ignore-paths option of git-svn to inform users about
the feature and provide some examples.

Signed-off-by: Vitaly "_Vi" Shukela <public_vi@tut.by>
Acked-by: Eric Wong <normalperson@yhbt.net>

[ew: trailing whitespace removed]
This commit is contained in:
Vitaly \"_Vi\" Shukela 2009-01-26 00:21:41 +02:00 коммит произвёл Eric Wong
Родитель edc662f929
Коммит 6076b843a0
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -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;