git-svn.txt: make formatting more consistent.
- correctly link paragraphs within list items - consistently format examples - put option alernatives on separate lines - always use [verse] for config items - always indent 1st paragraph of a list item, with a tab Signed-off-by: Yann Dirson <ydirson@altern.org> Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
647ac702d8
commit
6c32a7a994
@ -26,7 +26,6 @@ Subversion updated from git by the 'dcommit' command.
|
|||||||
|
|
||||||
COMMANDS
|
COMMANDS
|
||||||
--------
|
--------
|
||||||
--
|
|
||||||
|
|
||||||
'init'::
|
'init'::
|
||||||
Initializes an empty git repository with additional
|
Initializes an empty git repository with additional
|
||||||
@ -105,7 +104,7 @@ COMMANDS
|
|||||||
|
|
||||||
--parent;;
|
--parent;;
|
||||||
Fetch only from the SVN parent of the current HEAD.
|
Fetch only from the SVN parent of the current HEAD.
|
||||||
|
+
|
||||||
This doesn't interfere with interoperating with the Subversion
|
This doesn't interfere with interoperating with the Subversion
|
||||||
repository you cloned from, but if you wish for your local Git
|
repository you cloned from, but if you wish for your local Git
|
||||||
repository to be able to interoperate with someone else's local Git
|
repository to be able to interoperate with someone else's local Git
|
||||||
@ -118,20 +117,28 @@ the same local timezone.
|
|||||||
The '--ignore-paths' option should match for every 'fetch'
|
The '--ignore-paths' option should match for every 'fetch'
|
||||||
(including automatic fetches due to 'clone', 'dcommit',
|
(including automatic fetches due to 'clone', 'dcommit',
|
||||||
'rebase', etc) on a given repository.
|
'rebase', etc) on a given repository.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn-remote.<name>.ignore-paths
|
config key: svn-remote.<name>.ignore-paths
|
||||||
|
+
|
||||||
If the ignore-paths config key is set and the command
|
If the ignore-paths config key is set and the command line option is
|
||||||
line option is also given, both regular expressions
|
also given, both regular expressions will be used.
|
||||||
will be used.
|
+
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
+
|
||||||
|
--
|
||||||
|
Skip "doc*" directory for every fetch;;
|
||||||
|
+
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
--ignore-paths="^doc"
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
--ignore-paths="^doc" - skip "doc*" directory for every
|
Skip "branches" and "tags" of first level directories;;
|
||||||
fetch.
|
+
|
||||||
|
------------------------------------------------------------------------
|
||||||
--ignore-paths="^[^/]+/(?:branches|tags)" - skip
|
--ignore-paths="^[^/]+/(?:branches|tags)"
|
||||||
"branches" and "tags" of first level directories.
|
------------------------------------------------------------------------
|
||||||
|
--
|
||||||
|
|
||||||
'clone'::
|
'clone'::
|
||||||
Runs 'init' and 'fetch'. It will automatically create a
|
Runs 'init' and 'fetch'. It will automatically create a
|
||||||
@ -147,15 +154,15 @@ Examples:
|
|||||||
'rebase'::
|
'rebase'::
|
||||||
This fetches revisions from the SVN parent of the current HEAD
|
This fetches revisions from the SVN parent of the current HEAD
|
||||||
and rebases the current (uncommitted to SVN) work against it.
|
and rebases the current (uncommitted to SVN) work against it.
|
||||||
|
+
|
||||||
This works similarly to `svn update` or 'git pull' except that
|
This works similarly to `svn update` or 'git pull' except that
|
||||||
it preserves linear history with 'git rebase' instead of
|
it preserves linear history with 'git rebase' instead of
|
||||||
'git merge' for ease of dcommitting with 'git svn'.
|
'git merge' for ease of dcommitting with 'git svn'.
|
||||||
|
+
|
||||||
This accepts all options that 'git svn fetch' and 'git rebase'
|
This accepts all options that 'git svn fetch' and 'git rebase'
|
||||||
accept. However, '--fetch-all' only fetches from the current
|
accept. However, '--fetch-all' only fetches from the current
|
||||||
[svn-remote], and not all [svn-remote] definitions.
|
[svn-remote], and not all [svn-remote] definitions.
|
||||||
|
+
|
||||||
Like 'git rebase'; this requires that the working tree be clean
|
Like 'git rebase'; this requires that the working tree be clean
|
||||||
and have no uncommitted changes.
|
and have no uncommitted changes.
|
||||||
|
|
||||||
@ -186,14 +193,13 @@ and have no uncommitted changes.
|
|||||||
method (e.g. `svn://` or `http://` for anonymous read) to be
|
method (e.g. `svn://` or `http://` for anonymous read) to be
|
||||||
reused if a user is later given access to an alternate transport
|
reused if a user is later given access to an alternate transport
|
||||||
method (e.g. `svn+ssh://` or `https://`) for commit.
|
method (e.g. `svn+ssh://` or `https://`) for commit.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn-remote.<name>.commiturl
|
config key: svn-remote.<name>.commiturl
|
||||||
|
|
||||||
config key: svn.commiturl (overwrites all svn-remote.<name>.commiturl options)
|
config key: svn.commiturl (overwrites all svn-remote.<name>.commiturl options)
|
||||||
|
+
|
||||||
Using this option for any other purpose (don't ask)
|
Using this option for any other purpose (don't ask) is very strongly
|
||||||
is very strongly discouraged.
|
discouraged.
|
||||||
--
|
|
||||||
|
|
||||||
'branch'::
|
'branch'::
|
||||||
Create a branch in the SVN repository.
|
Create a branch in the SVN repository.
|
||||||
@ -232,10 +238,12 @@ where <name> is the name of the SVN repository as specified by the -R option to
|
|||||||
The following features from `svn log' are supported:
|
The following features from `svn log' are supported:
|
||||||
+
|
+
|
||||||
--
|
--
|
||||||
-r/--revision=<n>[:<n>];;
|
-r <n>[:<n>];;
|
||||||
|
--revision=<n>[:<n>];;
|
||||||
is supported, non-numeric args are not:
|
is supported, non-numeric args are not:
|
||||||
HEAD, NEXT, BASE, PREV, etc ...
|
HEAD, NEXT, BASE, PREV, etc ...
|
||||||
-v/--verbose;;
|
-v;;
|
||||||
|
--verbose;;
|
||||||
it's not completely compatible with the --verbose
|
it's not completely compatible with the --verbose
|
||||||
output in svn log, but reasonably close.
|
output in svn log, but reasonably close.
|
||||||
--limit=<n>;;
|
--limit=<n>;;
|
||||||
@ -274,7 +282,6 @@ Any other arguments are passed directly to 'git log'
|
|||||||
changes that haven't been committed to SVN (including local
|
changes that haven't been committed to SVN (including local
|
||||||
working-copy edits) are shown as revision 0.
|
working-copy edits) are shown as revision 0.
|
||||||
|
|
||||||
--
|
|
||||||
'find-rev'::
|
'find-rev'::
|
||||||
When given an SVN revision number of the form 'rN', returns the
|
When given an SVN revision number of the form 'rN', returns the
|
||||||
corresponding git commit hash (this can optionally be followed by a
|
corresponding git commit hash (this can optionally be followed by a
|
||||||
@ -340,58 +347,56 @@ Any other arguments are passed directly to 'git log'
|
|||||||
"checksum mismatch" (missed a modification). If the problem
|
"checksum mismatch" (missed a modification). If the problem
|
||||||
file cannot be ignored forever (with --ignore-paths) the only
|
file cannot be ignored forever (with --ignore-paths) the only
|
||||||
way to repair the repo is to use 'reset'.
|
way to repair the repo is to use 'reset'.
|
||||||
|
+
|
||||||
Only the rev_map and refs/remotes/git-svn are changed. Follow 'reset'
|
Only the rev_map and refs/remotes/git-svn are changed. Follow 'reset'
|
||||||
with a 'fetch' and then 'git reset' or 'git rebase' to move local
|
with a 'fetch' and then 'git reset' or 'git rebase' to move local
|
||||||
branches onto the new tree.
|
branches onto the new tree.
|
||||||
|
|
||||||
-r/--revision=<n>;;
|
-r <n>;;
|
||||||
|
--revision=<n>;;
|
||||||
Specify the most recent revision to keep. All later revisions
|
Specify the most recent revision to keep. All later revisions
|
||||||
are discarded.
|
are discarded.
|
||||||
-p/--parent;;
|
-p;;
|
||||||
|
--parent;;
|
||||||
Discard the specified revision as well, keeping the nearest
|
Discard the specified revision as well, keeping the nearest
|
||||||
parent instead.
|
parent instead.
|
||||||
Example:;;
|
Example:;;
|
||||||
Assume you have local changes in "master", but you need to refetch "r2".
|
Assume you have local changes in "master", but you need to refetch "r2".
|
||||||
|
+
|
||||||
------------
|
------------
|
||||||
r1---r2---r3 remotes/git-svn
|
r1---r2---r3 remotes/git-svn
|
||||||
\
|
\
|
||||||
A---B master
|
A---B master
|
||||||
------------
|
------------
|
||||||
|
+
|
||||||
Fix the ignore-paths or SVN permissions problem that caused "r2" to
|
Fix the ignore-paths or SVN permissions problem that caused "r2" to
|
||||||
be incomplete in the first place. Then:
|
be incomplete in the first place. Then:
|
||||||
|
+
|
||||||
[verse]
|
[verse]
|
||||||
git svn reset -r2 -p
|
git svn reset -r2 -p
|
||||||
git svn fetch
|
git svn fetch
|
||||||
|
+
|
||||||
------------
|
------------
|
||||||
r1---r2'--r3' remotes/git-svn
|
r1---r2'--r3' remotes/git-svn
|
||||||
\
|
\
|
||||||
r2---r3---A---B master
|
r2---r3---A---B master
|
||||||
------------
|
------------
|
||||||
|
+
|
||||||
Then fixup "master" with 'git rebase'.
|
Then fixup "master" with 'git rebase'.
|
||||||
Do NOT use 'git merge' or your history will not be compatible with a
|
Do NOT use 'git merge' or your history will not be compatible with a
|
||||||
future 'dcommit'!
|
future 'dcommit'!
|
||||||
|
+
|
||||||
[verse]
|
[verse]
|
||||||
git rebase --onto remotes/git-svn A^ master
|
git rebase --onto remotes/git-svn A^ master
|
||||||
|
+
|
||||||
------------
|
------------
|
||||||
r1---r2'--r3' remotes/git-svn
|
r1---r2'--r3' remotes/git-svn
|
||||||
\
|
\
|
||||||
A'--B' master
|
A'--B' master
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
-------
|
-------
|
||||||
--
|
|
||||||
|
|
||||||
--shared[={false|true|umask|group|all|world|everybody}]::
|
--shared[={false|true|umask|group|all|world|everybody}]::
|
||||||
--template=<template_directory>::
|
--template=<template_directory>::
|
||||||
@ -400,85 +405,81 @@ OPTIONS
|
|||||||
|
|
||||||
-r <ARG>::
|
-r <ARG>::
|
||||||
--revision <ARG>::
|
--revision <ARG>::
|
||||||
|
Used with the 'fetch' command.
|
||||||
Used with the 'fetch' command.
|
+
|
||||||
|
|
||||||
This allows revision ranges for partial/cauterized history
|
This allows revision ranges for partial/cauterized history
|
||||||
to be supported. $NUMBER, $NUMBER1:$NUMBER2 (numeric ranges),
|
to be supported. $NUMBER, $NUMBER1:$NUMBER2 (numeric ranges),
|
||||||
$NUMBER:HEAD, and BASE:$NUMBER are all supported.
|
$NUMBER:HEAD, and BASE:$NUMBER are all supported.
|
||||||
|
+
|
||||||
This can allow you to make partial mirrors when running fetch;
|
This can allow you to make partial mirrors when running fetch;
|
||||||
but is generally not recommended because history will be skipped
|
but is generally not recommended because history will be skipped
|
||||||
and lost.
|
and lost.
|
||||||
|
|
||||||
-::
|
-::
|
||||||
--stdin::
|
--stdin::
|
||||||
|
Only used with the 'set-tree' command.
|
||||||
Only used with the 'set-tree' command.
|
+
|
||||||
|
|
||||||
Read a list of commits from stdin and commit them in reverse
|
Read a list of commits from stdin and commit them in reverse
|
||||||
order. Only the leading sha1 is read from each line, so
|
order. Only the leading sha1 is read from each line, so
|
||||||
'git rev-list --pretty=oneline' output can be used.
|
'git rev-list --pretty=oneline' output can be used.
|
||||||
|
|
||||||
--rmdir::
|
--rmdir::
|
||||||
|
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
||||||
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
+
|
||||||
|
|
||||||
Remove directories from the SVN tree if there are no files left
|
Remove directories from the SVN tree if there are no files left
|
||||||
behind. SVN can version empty directories, and they are not
|
behind. SVN can version empty directories, and they are not
|
||||||
removed by default if there are no files left in them. git
|
removed by default if there are no files left in them. git
|
||||||
cannot version empty directories. Enabling this flag will make
|
cannot version empty directories. Enabling this flag will make
|
||||||
the commit to SVN act like git.
|
the commit to SVN act like git.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn.rmdir
|
config key: svn.rmdir
|
||||||
|
|
||||||
-e::
|
-e::
|
||||||
--edit::
|
--edit::
|
||||||
|
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
||||||
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
+
|
||||||
|
|
||||||
Edit the commit message before committing to SVN. This is off by
|
Edit the commit message before committing to SVN. This is off by
|
||||||
default for objects that are commits, and forced on when committing
|
default for objects that are commits, and forced on when committing
|
||||||
tree objects.
|
tree objects.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn.edit
|
config key: svn.edit
|
||||||
|
|
||||||
-l<num>::
|
-l<num>::
|
||||||
--find-copies-harder::
|
--find-copies-harder::
|
||||||
|
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
||||||
Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
|
+
|
||||||
|
|
||||||
They are both passed directly to 'git diff-tree'; see
|
They are both passed directly to 'git diff-tree'; see
|
||||||
linkgit:git-diff-tree[1] for more information.
|
linkgit:git-diff-tree[1] for more information.
|
||||||
|
+
|
||||||
[verse]
|
[verse]
|
||||||
config key: svn.l
|
config key: svn.l
|
||||||
config key: svn.findcopiesharder
|
config key: svn.findcopiesharder
|
||||||
|
|
||||||
-A<filename>::
|
-A<filename>::
|
||||||
--authors-file=<filename>::
|
--authors-file=<filename>::
|
||||||
|
Syntax is compatible with the file used by 'git cvsimport':
|
||||||
Syntax is compatible with the file used by 'git cvsimport':
|
+
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
loginname = Joe User <user@example.com>
|
loginname = Joe User <user@example.com>
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
+
|
||||||
If this option is specified and 'git svn' encounters an SVN
|
If this option is specified and 'git svn' encounters an SVN
|
||||||
committer name that does not exist in the authors-file, 'git svn'
|
committer name that does not exist in the authors-file, 'git svn'
|
||||||
will abort operation. The user will then have to add the
|
will abort operation. The user will then have to add the
|
||||||
appropriate entry. Re-running the previous 'git svn' command
|
appropriate entry. Re-running the previous 'git svn' command
|
||||||
after the authors-file is modified should continue operation.
|
after the authors-file is modified should continue operation.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn.authorsfile
|
config key: svn.authorsfile
|
||||||
|
|
||||||
--authors-prog=<filename>::
|
--authors-prog=<filename>::
|
||||||
|
If this option is specified, for each SVN committer name that
|
||||||
If this option is specified, for each SVN committer name that does not
|
does not exist in the authors file, the given file is executed
|
||||||
exist in the authors file, the given file is executed with the committer
|
with the committer name as the first argument. The program is
|
||||||
name as the first argument. The program is expected to return a single
|
expected to return a single line of the form "Name <email>",
|
||||||
line of the form "Name <email>", which will be treated as if included in
|
which will be treated as if included in the authors file.
|
||||||
the authors file.
|
|
||||||
|
|
||||||
-q::
|
-q::
|
||||||
--quiet::
|
--quiet::
|
||||||
@ -487,16 +488,15 @@ the authors file.
|
|||||||
|
|
||||||
--repack[=<n>]::
|
--repack[=<n>]::
|
||||||
--repack-flags=<flags>::
|
--repack-flags=<flags>::
|
||||||
|
These should help keep disk usage sane for large fetches with
|
||||||
These should help keep disk usage sane for large fetches
|
many revisions.
|
||||||
with many revisions.
|
+
|
||||||
|
|
||||||
--repack takes an optional argument for the number of revisions
|
--repack takes an optional argument for the number of revisions
|
||||||
to fetch before repacking. This defaults to repacking every
|
to fetch before repacking. This defaults to repacking every
|
||||||
1000 commits fetched if no argument is specified.
|
1000 commits fetched if no argument is specified.
|
||||||
|
+
|
||||||
--repack-flags are passed directly to 'git repack'.
|
--repack-flags are passed directly to 'git repack'.
|
||||||
|
+
|
||||||
[verse]
|
[verse]
|
||||||
config key: svn.repack
|
config key: svn.repack
|
||||||
config key: svn.repackflags
|
config key: svn.repackflags
|
||||||
@ -505,41 +505,36 @@ config key: svn.repackflags
|
|||||||
--merge::
|
--merge::
|
||||||
-s<strategy>::
|
-s<strategy>::
|
||||||
--strategy=<strategy>::
|
--strategy=<strategy>::
|
||||||
|
These are only used with the 'dcommit' and 'rebase' commands.
|
||||||
These are only used with the 'dcommit' and 'rebase' commands.
|
+
|
||||||
|
|
||||||
Passed directly to 'git rebase' when using 'dcommit' if a
|
Passed directly to 'git rebase' when using 'dcommit' if a
|
||||||
'git reset' cannot be used (see 'dcommit').
|
'git reset' cannot be used (see 'dcommit').
|
||||||
|
|
||||||
-n::
|
-n::
|
||||||
--dry-run::
|
--dry-run::
|
||||||
|
This can be used with the 'dcommit', 'rebase', 'branch' and
|
||||||
This can be used with the 'dcommit', 'rebase', 'branch' and 'tag'
|
'tag' commands.
|
||||||
commands.
|
+
|
||||||
|
|
||||||
For 'dcommit', print out the series of git arguments that would show
|
For 'dcommit', print out the series of git arguments that would show
|
||||||
which diffs would be committed to SVN.
|
which diffs would be committed to SVN.
|
||||||
|
+
|
||||||
For 'rebase', display the local branch associated with the upstream svn
|
For 'rebase', display the local branch associated with the upstream svn
|
||||||
repository associated with the current branch and the URL of svn
|
repository associated with the current branch and the URL of svn
|
||||||
repository that will be fetched from.
|
repository that will be fetched from.
|
||||||
|
+
|
||||||
For 'branch' and 'tag', display the urls that will be used for copying when
|
For 'branch' and 'tag', display the urls that will be used for copying when
|
||||||
creating the branch or tag.
|
creating the branch or tag.
|
||||||
|
|
||||||
--
|
|
||||||
|
|
||||||
ADVANCED OPTIONS
|
ADVANCED OPTIONS
|
||||||
----------------
|
----------------
|
||||||
--
|
|
||||||
|
|
||||||
-i<GIT_SVN_ID>::
|
-i<GIT_SVN_ID>::
|
||||||
--id <GIT_SVN_ID>::
|
--id <GIT_SVN_ID>::
|
||||||
|
This sets GIT_SVN_ID (instead of using the environment). This
|
||||||
This sets GIT_SVN_ID (instead of using the environment). This
|
allows the user to override the default refname to fetch from
|
||||||
allows the user to override the default refname to fetch from
|
when tracking a single URL. The 'log' and 'dcommit' commands
|
||||||
when tracking a single URL. The 'log' and 'dcommit' commands
|
no longer require this switch as an argument.
|
||||||
no longer require this switch as an argument.
|
|
||||||
|
|
||||||
-R<remote name>::
|
-R<remote name>::
|
||||||
--svn-remote <remote name>::
|
--svn-remote <remote name>::
|
||||||
@ -553,33 +548,30 @@ no longer require this switch as an argument.
|
|||||||
started tracking a branch and never tracked the trunk it was
|
started tracking a branch and never tracked the trunk it was
|
||||||
descended from. This feature is enabled by default, use
|
descended from. This feature is enabled by default, use
|
||||||
--no-follow-parent to disable it.
|
--no-follow-parent to disable it.
|
||||||
|
+
|
||||||
|
[verse]
|
||||||
config key: svn.followparent
|
config key: svn.followparent
|
||||||
|
|
||||||
--
|
|
||||||
CONFIG FILE-ONLY OPTIONS
|
CONFIG FILE-ONLY OPTIONS
|
||||||
------------------------
|
------------------------
|
||||||
--
|
|
||||||
|
|
||||||
svn.noMetadata::
|
svn.noMetadata::
|
||||||
svn-remote.<name>.noMetadata::
|
svn-remote.<name>.noMetadata::
|
||||||
|
This gets rid of the 'git-svn-id:' lines at the end of every commit.
|
||||||
This gets rid of the 'git-svn-id:' lines at the end of every commit.
|
+
|
||||||
|
|
||||||
If you lose your .git/svn/git-svn/.rev_db file, 'git svn' will not
|
If you lose your .git/svn/git-svn/.rev_db file, 'git svn' will not
|
||||||
be able to rebuild it and you won't be able to fetch again,
|
be able to rebuild it and you won't be able to fetch again,
|
||||||
either. This is fine for one-shot imports.
|
either. This is fine for one-shot imports.
|
||||||
|
+
|
||||||
The 'git svn log' command will not work on repositories using
|
The 'git svn log' command will not work on repositories using
|
||||||
this, either. Using this conflicts with the 'useSvmProps'
|
this, either. Using this conflicts with the 'useSvmProps'
|
||||||
option for (hopefully) obvious reasons.
|
option for (hopefully) obvious reasons.
|
||||||
|
|
||||||
svn.useSvmProps::
|
svn.useSvmProps::
|
||||||
svn-remote.<name>.useSvmProps::
|
svn-remote.<name>.useSvmProps::
|
||||||
|
This allows 'git svn' to re-map repository URLs and UUIDs from
|
||||||
This allows 'git svn' to re-map repository URLs and UUIDs from
|
mirrors created using SVN::Mirror (or svk) for metadata.
|
||||||
mirrors created using SVN::Mirror (or svk) for metadata.
|
+
|
||||||
|
|
||||||
If an SVN revision has a property, "svm:headrev", it is likely
|
If an SVN revision has a property, "svm:headrev", it is likely
|
||||||
that the revision was created by SVN::Mirror (also used by SVK).
|
that the revision was created by SVN::Mirror (also used by SVK).
|
||||||
The property contains a repository UUID and a revision. We want
|
The property contains a repository UUID and a revision. We want
|
||||||
@ -602,14 +594,13 @@ svn-remote.<name>.rewriteRoot::
|
|||||||
metadata so users of it will see the public URL.
|
metadata so users of it will see the public URL.
|
||||||
|
|
||||||
svn.brokenSymlinkWorkaround::
|
svn.brokenSymlinkWorkaround::
|
||||||
This disables potentially expensive checks to workaround broken symlinks
|
This disables potentially expensive checks to workaround
|
||||||
checked into SVN by broken clients. Set this option to "false" if you
|
broken symlinks checked into SVN by broken clients. Set this
|
||||||
track a SVN repository with many empty blobs that are not symlinks.
|
option to "false" if you track a SVN repository with many
|
||||||
This option may be changed while 'git svn' is running and take effect on
|
empty blobs that are not symlinks. This option may be changed
|
||||||
the next revision fetched. If unset, 'git svn' assumes this option to be
|
while 'git svn' is running and take effect on the next
|
||||||
"true".
|
revision fetched. If unset, 'git svn' assumes this option to
|
||||||
|
be "true".
|
||||||
--
|
|
||||||
|
|
||||||
Since the noMetadata, rewriteRoot, useSvnsyncProps and useSvmProps
|
Since the noMetadata, rewriteRoot, useSvnsyncProps and useSvmProps
|
||||||
options all affect the metadata generated and used by 'git svn'; they
|
options all affect the metadata generated and used by 'git svn'; they
|
||||||
|
Reference in New Issue
Block a user