3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
7 .\" Source: Git 2.47.0.305.g4083a6f052
10 .TH "GIT\-SVN" "1" "2024-11-20" "Git 2\&.47\&.0\&.305\&.g4083a6" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-svn \- Bidirectional operation between a Subversion repository and Git
35 \fIgit svn\fR <command> [<options>] [<arguments>]
39 \fIgit svn\fR is a simple conduit for changesets between Subversion and Git\&. It provides a bidirectional flow of changes between a Subversion and a Git repository\&.
41 \fIgit svn\fR can track a standard Subversion repository, following the common "trunk/branches/tags" layout, with the \-\-stdlayout option\&. It can also follow branches and tags in any layout with the \-T/\-t/\-b options (see options to \fIinit\fR below, and also the \fIclone\fR command)\&.
43 Once tracking a Subversion repository (with any of the above methods), the Git repository can be updated from Subversion by the \fIfetch\fR command and Subversion updated from Git by the \fIdcommit\fR command\&.
48 Initializes an empty Git repository with additional metadata directories for
49 \fIgit svn\fR\&. The Subversion URL may be specified as a command\-line argument, or as full URL arguments to \-T/\-t/\-b\&. Optionally, the target directory to operate on can be specified as a second argument\&. Normally this command initializes the current directory\&.
51 \-T<trunk\-subdir>, \-\-trunk=<trunk\-subdir>, \-t<tags\-subdir>, \-\-tags=<tags\-subdir>, \-b<branches\-subdir>, \-\-branches=<branches\-subdir>, \-s, \-\-stdlayout
53 These are optional command\-line options for init\&. Each of these flags can point to a relative repository path (\-\-tags=project/tags) or a full url (\-\-tags=https://foo\&.org/project/tags)\&. You can specify more than one \-\-tags and/or \-\-branches options, in case your Subversion repository places tags or branches under multiple paths\&. The option \-\-stdlayout is a shorthand way of setting trunk,tags,branches as the relative paths, which is the Subversion default\&. If any of the other options are given as well, they take precedence\&.
60 option in the [svn\-remote] config\&. This option is not recommended, please read the
61 \fIsvn\&.noMetadata\fR
62 section of this manpage before using this option\&.
69 option in the [svn\-remote] config\&.
72 \-\-use\-svnsync\-props
76 option in the [svn\-remote] config\&.
79 \-\-rewrite\-root=<URL>
83 option in the [svn\-remote] config\&.
86 \-\-rewrite\-uuid=<UUID>
90 option in the [svn\-remote] config\&.
95 For transports that SVN handles authentication for (http, https, and plain svn), specify the username\&. For other transports (e\&.g\&.
96 \fBsvn+ssh://\fR), you must include the username in the URL, e\&.g\&.
97 \fBsvn+ssh://foo@svn\&.bar\&.com/project\fR
102 This allows one to specify a prefix which is prepended to the names of remotes if trunk/branches/tags are specified\&. The prefix does not automatically include a trailing slash, so be sure you include one in the argument if that is what you want\&. If \-\-branches/\-b is specified, the prefix must include a trailing slash\&. Setting a prefix (with a trailing slash) is strongly encouraged in any case, as your SVN\-tracking refs will then be located at "refs/remotes/$prefix/\fB", which is compatible with Git\(cqs own remote\-tracking ref layout (refs/remotes/$remote/\fR)\&. Setting a prefix is also useful if you wish to track multiple projects that share a common repository\&. By default, the prefix is set to
109 .nr an-no-space-flag 1
116 Before Git v2\&.0, the default prefix was "" (no prefix)\&. This meant that SVN\-tracking refs were put at "refs/remotes/*", which is incompatible with how Git\(cqs own remote\-tracking refs are organized\&. If you still want the old default, you can get it by passing
118 "" on the command line (\fB\-\-prefix=\fR"" may not work if your Perl\(cqs Getopt::Long is < v2\&.37)\&.
123 \-\-ignore\-refs=<regex>
129 this regular expression will be preserved as a config key\&. See
132 \fB\-\-ignore\-refs\fR\&.
135 \-\-ignore\-paths=<regex>
141 this regular expression will be preserved as a config key\&. See
144 \fB\-\-ignore\-paths\fR\&.
147 \-\-include\-paths=<regex>
153 this regular expression will be preserved as a config key\&. See
156 \fB\-\-include\-paths\fR\&.
159 \-\-no\-minimize\-url
161 When tracking multiple directories (using \-\-stdlayout, \-\-branches, or \-\-tags options), git svn will attempt to connect to the root (or highest allowed level) of the Subversion repository\&. This default allows better tracking of history if entire projects are moved within a repository, but may cause issues on repositories where read access restrictions are in place\&. Passing
162 \fB\-\-no\-minimize\-url\fR
163 will allow git svn to accept URLs as\-is without attempting to connect to a higher level directory\&. This option is off by default when only one URL/branch is tracked (it would do little good)\&.
169 Fetch unfetched revisions from the Subversion remote we are tracking\&. The name of the [svn\-remote "\&...\:"] section in the $GIT_DIR/config file may be specified as an optional command\-line argument\&.
171 This automatically updates the rev_map if needed (see
172 \fI$GIT_DIR/svn/**/\&.rev_map\&.*\fR
173 in the FILES section below for details)\&.
177 Store Git commit times in the local time zone instead of UTC\&. This makes
179 (even without \-\-date=local) show the same times that
182 would in the local time zone\&.
184 This doesn\(cqt interfere with interoperating with the Subversion repository you cloned from, but if you wish for your local Git repository to be able to interoperate with someone else\(cqs local Git repository, either don\(cqt use this option or you should both use it in the same local time zone\&.
189 Fetch only from the SVN parent of the current HEAD\&.
192 \-\-ignore\-refs=<regex>
194 Ignore refs for branches or tags matching the Perl regular expression\&. A "negative look\-ahead assertion" like
195 \fB^refs/remotes/origin/\fR(?!tags/wanted\-tag|\fBwanted\-branch\fR)\&.*$ can be used to allow only certain refs\&.
201 config key: svn\-remote\&.<name>\&.ignore\-refs
206 If the ignore\-refs configuration key is set, and the command\-line option is also given, both regular expressions will be used\&.
209 \-\-ignore\-paths=<regex>
211 This allows one to specify a Perl regular expression that will cause skipping of all matching paths from checkout from SVN\&. The
212 \fB\-\-ignore\-paths\fR
213 option should match for every
215 (including automatic fetches due to
218 \fIrebase\fR, etc) on a given repository\&.
224 config key: svn\-remote\&.<name>\&.ignore\-paths
229 If the ignore\-paths configuration key is set, and the command\-line option is also given, both regular expressions will be used\&.
233 Skip "doc*" directory for every fetch
240 \-\-ignore\-paths="^doc"
247 Skip "branches" and "tags" of first level directories
254 \-\-ignore\-paths="^[^/]+/(?:branches|tags)"
262 \-\-include\-paths=<regex>
264 This allows one to specify a Perl regular expression that will cause the inclusion of only matching paths from checkout from SVN\&. The
265 \fB\-\-include\-paths\fR
266 option should match for every
268 (including automatic fetches due to
271 \fIrebase\fR, etc) on a given repository\&.
272 \fB\-\-ignore\-paths\fR
273 takes precedence over
274 \fB\-\-include\-paths\fR\&.
280 config key: svn\-remote\&.<name>\&.include\-paths
287 \-\-log\-window\-size=<n>
289 Fetch <n> log entries per request when scanning Subversion history\&. The default is 100\&. For very large Subversion repositories, larger values may be needed for
290 \fIclone\fR/\fIfetch\fR
291 to complete in reasonable time\&. But overly large values may lead to higher memory usage and request timeouts\&.
300 \fIfetch\fR\&. It will automatically create a directory based on the basename of the URL passed to it; or if a second argument is passed; it will create a directory and work within that\&. It accepts all arguments that the
304 commands accept; with the exception of
307 \fB\-\-parent\fR\&. After a repository is cloned, the
309 command will be able to update revisions without affecting the working tree; and the
311 command will be able to update the working tree with the latest changes\&.
313 \-\-preserve\-empty\-dirs
315 Create a placeholder file in the local Git repository for each empty directory fetched from Subversion\&. This includes directories that become empty by removing all entries in the Subversion repository (but not the directory itself)\&. The placeholder files are also tracked and removed when no longer necessary\&.
318 \-\-placeholder\-filename=<filename>
320 Set the name of placeholder files created by \-\-preserve\-empty\-dirs\&. Default: "\&.gitignore"
326 This fetches revisions from the SVN parent of the current HEAD and rebases the current (uncommitted to SVN) work against it\&.
328 This works similarly to
333 except that it preserves linear history with
337 for ease of dcommitting with
340 This accepts all options that
346 only fetches from the current [svn\-remote], and not all [svn\-remote] definitions\&.
349 \fIgit rebase\fR; this requires that the working tree be clean and have no uncommitted changes\&.
351 This automatically updates the rev_map if needed (see
352 \fI$GIT_DIR/svn/**/\&.rev_map\&.*\fR
353 in the FILES section below for details)\&.
357 Do not fetch remotely; only run
359 against the last fetched commit from the upstream SVN\&.
365 Commit each diff from the current branch directly to the SVN repository, and then rebase or reset (depending on whether or not there is a diff between SVN and head)\&. This will create a revision in SVN for each commit in Git\&.
367 When an optional Git branch name (or a Git commit object name) is specified as an argument, the subcommand works on the specified branch, not on the current branch\&.
377 After committing, do not rebase or reset\&.
380 \-\-commit\-url <URL>
382 Commit to this SVN URL (the full path)\&. This is intended to allow existing
384 repositories created with one transport method (e\&.g\&.
388 for anonymous read) to be reused if a user is later given access to an alternate transport method (e\&.g\&.
391 \fBhttps://\fR) for commit\&.
397 config key: svn\-remote\&.<name>\&.commiturl
398 config key: svn\&.commiturl (overwrites all svn\-remote\&.<name>\&.commiturl options)
403 Note that the SVN URL of the commiturl config key includes the SVN branch\&. If you rather want to set the commit URL for an entire SVN repository use svn\-remote\&.<name>\&.pushurl instead\&.
405 Using this option for any other purpose (don\(cqt ask) is very strongly discouraged\&.
408 \-\-mergeinfo=<mergeinfo>
410 Add the given merge information during the dcommit (e\&.g\&.
411 \fB\-\-mergeinfo=\fR"/branches/foo:1\-10")\&. All svn server versions can store this information (as a property), and svn clients starting from version 1\&.5 can make use of it\&. To specify merge information from multiple branches, use a single space character between the branches (\fB\-\-mergeinfo=\fR"/branches/foo:1\-10
412 \fB/branches/bar:3,5\-6,8\fR")
418 config key: svn\&.pushmergeinfo
423 This option will cause git\-svn to attempt to automatically populate the svn:mergeinfo property in the SVN repository when possible\&. Currently, this can only be done when dcommitting non\-fast\-forward merges where all parents but the first have already been pushed into SVN\&.
428 Ask the user to confirm that a patch set should actually be sent to SVN\&. For each patch, one may answer "yes" (accept this patch), "no" (discard this patch), "all" (accept all patches), or "quit"\&.
430 \fIgit svn dcommit\fR
431 returns immediately if answer is "no" or "quit", without committing anything to SVN\&.
437 Create a branch in the SVN repository\&.
441 Allows to specify the commit message\&.
446 Create a tag by using the tags_subdir instead of the branches_subdir specified during git svn init\&.
449 \-d<path>, \-\-destination=<path>
451 If more than one \-\-branches (or \-\-tags) option was given to the
455 command, you must provide the location of the branch (or tag) you wish to create in the SVN repository\&. <path> specifies which path to use to create the branch or tag and should match the pattern on the left\-hand side of one of the configured branches or tags refspecs\&. You can see these refspecs with the commands
461 git config \-\-get\-all svn\-remote\&.<name>\&.branches
462 git config \-\-get\-all svn\-remote\&.<name>\&.tags
468 where <name> is the name of the SVN repository as specified by the \-R option to
470 (or "svn" by default)\&.
475 Specify the SVN username to perform the commit as\&. This option overrides the
477 configuration property\&.
482 Use the specified URL to connect to the destination Subversion repository\&. This is useful in cases where the source SVN repository is read\-only\&. This option overrides configuration property
489 git config \-\-get\-all svn\-remote\&.<name>\&.commiturl
498 Create parent folders\&. This parameter is equivalent to the parameter \-\-parents on svn cp commands and is useful for non\-standard repository layouts\&.
504 Create a tag in the SVN repository\&. This is a shorthand for
510 This should make it easy to look up svn log messages when svn users refer to \-r/\-\-revision numbers\&.
512 The following features from
516 \-r <n>[:<n>], \-\-revision=<n>[:<n>]
518 is supported, non\-numeric args are not: HEAD, NEXT, BASE, PREV, etc \&...\:
523 it\(cqs not completely compatible with the \-\-verbose output in svn log, but reasonably close\&.
528 is NOT the same as \-\-max\-count, doesn\(cqt count merged/excluded commits
540 shows the Git commit sha1, as well
545 our version of \-\-pretty=oneline
553 .nr an-no-space-flag 1
560 SVN itself only stores times in UTC and nothing else\&. The regular svn client converts the UTC time to the local time (or based on the TZ= environment)\&. This command has the same behaviour\&.
563 Any other arguments are passed directly to
569 Show what revision and author last modified each line of a file\&. The output of this mode is format\-compatible with the output of
571 by default\&. Like the SVN blame command, local uncommitted changes in the working tree are ignored; the version of the file in the HEAD revision is annotated\&. Unknown arguments are passed directly to
576 Produce output in the same format as
577 \fIgit blame\fR, but with SVN revision numbers instead of Git commit hashes\&. In this mode, changes that haven\(cqt been committed to SVN (including local working\-copy edits) are shown as revision 0\&.
583 When given an SVN revision number of the form
584 \fIrN\fR, returns the corresponding Git commit hash (this can optionally be followed by a tree\-ish to specify which branch should be searched)\&. When given a tree\-ish, returns the corresponding SVN revision number\&.
588 Don\(cqt require an exact match if given an SVN revision, instead find the commit corresponding to the state of the SVN repository (on the current branch) at the specified revision\&.
593 Don\(cqt require an exact match if given an SVN revision; if there is not an exact match return the closest match searching forward in the history\&.
599 You should consider using
601 instead of this command\&. Commit specified commit or tree objects to SVN\&. This relies on your imported fetch data being up to date\&. This makes absolutely no attempts to do patching when committing to SVN, it simply overwrites files with those specified in the tree or commit\&. All merging is assumed to have taken place independently of
608 Recursively finds the svn:ignore and svn:global\-ignores properties on directories and creates matching \&.gitignore files\&. The resulting files are staged to be committed, but are not committed\&. Use \-r/\-\-revision to refer to a specific revision\&.
613 Recursively finds and lists the svn:ignore and svn:global\-ignores properties on directories\&. The output is suitable for appending to the $GIT_DIR/info/exclude file\&.
618 Attempts to recreate empty directories that core Git cannot track based on information in $GIT_DIR/svn/<refname>/unhandled\&.log files\&. Empty directories are automatically recreated when using "git svn clone" and "git svn rebase", so "mkdirs" is intended for use after commands like "git checkout" or "git reset"\&. (See the svn\-remote\&.<name>\&.automkdirs config file option for more information\&.)
623 Commits the diff of two tree\-ish arguments from the command\-line\&. This command does not rely on being inside a
626 \fBinit\fR\-ed repository\&. This command takes three arguments, (a) the original tree to diff against, (b) the new tree result, (c) the URL of the target Subversion repository\&. The final argument (URL) may be omitted if you are working from a
627 \fIgit svn\fR\-aware repository (that has been
629 \fIgit svn\fR)\&. The \-r<revision> option is required for this\&.
631 The commit message is supplied either directly with the
635 option, or indirectly from the tag or commit when the second tree\-ish denotes such an object, or it is requested by invoking an editor (see
639 \-m <msg>, \-\-message=<msg>
643 as the commit message\&. This option disables the
648 \-F <filename>, \-\-file=<filename>
650 Take the commit message from the given file\&. This option disables the
658 Shows information about a file or directory similar to what
660 provides\&. Does not currently support a \-r/\-\-revision argument\&. Use the \-\-url option to output only the value of the
667 Lists the properties stored in the Subversion repository about a given file or directory\&. Use \-r/\-\-revision to refer to a specific Subversion revision\&.
672 Gets the Subversion property given as the first argument, for a file\&. A specific revision can be specified with \-r/\-\-revision\&.
677 Sets the Subversion property given as the first argument, to the value given as the second argument for the file given as the third argument\&.
685 git svn propset svn:keywords "FreeBSD=%H" devel/py\-tipper/Makefile
691 This will set the property
696 \fIdevel/py\-tipper/Makefile\fR\&.
699 \fIshow\-externals\fR
701 Shows the Subversion externals\&. Use \-r/\-\-revision to specify a specific revision\&.
706 Compress $GIT_DIR/svn/<refname>/unhandled\&.log files and remove $GIT_DIR/svn/<refname>/index files\&.
711 Undoes the effects of
713 back to the specified revision\&. This allows you to re\-\fIfetch\fR
714 an SVN revision\&. Normally the contents of an SVN revision should never change and
716 should not be necessary\&. However, if SVN permissions change, or if you alter your \-\-ignore\-paths option, a
718 may fail with "not found in commit" (file not previously visible) or "checksum mismatch" (missed a modification)\&. If the problem file cannot be ignored forever (with \-\-ignore\-paths) the only way to repair the repo is to use
721 Only the rev_map and refs/remotes/git\-svn are changed (see
722 \fI$GIT_DIR/svn/**/\&.rev_map\&.*\fR
723 in the FILES section below for details)\&. Follow
731 to move local branches onto the new tree\&.
733 \-r <n>, \-\-revision=<n>
735 Specify the most recent revision to keep\&. All later revisions are discarded\&.
740 Discard the specified revision as well, keeping the nearest parent instead\&.
745 Assume you have local changes in "master", but you need to refetch "r2"\&.
751 r1\-\-\-r2\-\-\-r3 remotes/git\-svn
759 Fix the ignore\-paths or SVN permissions problem that caused "r2" to be incomplete in the first place\&. Then:
765 git svn reset \-r2 \-p
776 r1\-\-\-r2\*(Aq\-\-r3\*(Aq remotes/git\-svn
778 r2\-\-\-r3\-\-\-A\-\-\-B master
784 Then fixup "master" with
785 \fIgit rebase\fR\&. Do NOT use
787 or your history will not be compatible with a future
794 git rebase \-\-onto remotes/git\-svn A^ master
804 r1\-\-\-r2\*(Aq\-\-r3\*(Aq remotes/git\-svn
806 A\*(Aq\-\-B\*(Aq master
815 \-\-shared[=(false|true|umask|group|all|world|everybody)], \-\-template=<template\-directory>
819 command\&. These are passed directly to
823 \-r <arg>, \-\-revision <arg>
829 This allows revision ranges for partial/cauterized history to be supported\&. $NUMBER, $NUMBER1:$NUMBER2 (numeric ranges), $NUMBER:HEAD, and BASE:$NUMBER are all supported\&.
831 This can allow you to make partial mirrors when running fetch; but is generally not recommended because history will be skipped and lost\&.
840 Read a list of commits from stdin and commit them in reverse order\&. Only the leading sha1 is read from each line, so
841 \fIgit rev\-list \-\-pretty=oneline\fR
842 output can be used\&.
854 Remove directories from the SVN tree if there are no files left behind\&. SVN can version empty directories, and they are not removed by default if there are no files left in them\&. Git cannot version empty directories\&. Enabling this flag will make the commit to SVN act like Git\&.
860 config key: svn\&.rmdir
876 Edit the commit message before committing to SVN\&. This is off by default for objects that are commits, and forced on when committing tree objects\&.
882 config key: svn\&.edit
889 \-l<num>, \-\-find\-copies\-harder
898 They are both passed directly to
899 \fIgit diff\-tree\fR; see
900 \fBgit-diff-tree\fR(1)
901 for more information\&.
908 config key: svn\&.findcopiesharder
915 \-A<filename>, \-\-authors\-file=<filename>
917 Syntax is compatible with the file used by
919 but an empty email address can be supplied with
926 loginname = Joe User <user@example\&.com>
932 If this option is specified and
934 encounters an SVN committer name that does not exist in the authors\-file,
936 will abort operation\&. The user will then have to add the appropriate entry\&. Re\-running the previous
938 command after the authors\-file is modified should continue operation\&.
944 config key: svn\&.authorsfile
951 \-\-authors\-prog=<filename>
953 If this option is specified, for each SVN committer name that does not exist in the authors file, the given file is executed with the committer name as the first argument\&. The program is expected to return a single line of the form "Name <email>" or "Name <>", which will be treated as if included in the authors file\&.
955 Due to historical reasons a relative
957 is first searched relative to the current directory for
961 and relative to the root of the working tree for
964 is not found, it is searched like any other command in
971 config key: svn\&.authorsProg
982 less verbose\&. Specify a second time to make it even less verbose\&.
985 \-m, \-\-merge, \-s<strategy>, \-\-strategy=<strategy>, \-p, \-\-rebase\-merges
987 These are only used with the
1005 This can be used with the
1014 \fIdcommit\fR, print out the series of Git arguments that would show which diffs would be committed to SVN\&.
1017 \fIrebase\fR, display the local branch associated with the upstream svn repository associated with the current branch and the URL of svn repository that will be fetched from\&.
1022 \fItag\fR, display the urls that will be used for copying when creating the branch or tag\&.
1025 \-\-use\-log\-author
1027 When retrieving svn commits into Git (as part of
1031 operations), look for the first
1034 \fBSigned\-off\-by\fR
1035 trailer in the log message and use that as the author string\&.
1041 config key: svn\&.useLogAuthor
1048 \-\-add\-author\-from
1050 When committing to svn from Git (as part of
1054 operations), if the existing log message doesn\(cqt already have a
1057 \fBSigned\-off\-by\fR
1060 line based on the Git commit\(cqs author string\&. If you use this, then
1061 \fB\-\-use\-log\-author\fR
1062 will retrieve a valid author string for all commits\&.
1068 config key: svn\&.addAuthorFrom
1074 .SH "ADVANCED OPTIONS"
1076 \-i<GIT_SVN_ID>, \-\-id <GIT_SVN_ID>
1078 This sets GIT_SVN_ID (instead of using the environment)\&. This allows the user to override the default refname to fetch from when tracking a single URL\&. The
1082 commands no longer require this switch as an argument\&.
1085 \-R<remote\-name>, \-\-svn\-remote <remote\-name>
1087 Specify the [svn\-remote "<remote\-name>"] section to use, this allows SVN multiple repositories to be tracked\&. Default: "svn"
1092 This option is only relevant if we are tracking branches (using one of the repository layout options \-\-trunk, \-\-tags, \-\-branches, \-\-stdlayout)\&. For each tracked branch, try to find out where its revision was copied from, and set a suitable parent in the first Git commit for the branch\&. This is especially helpful when we\(cqre tracking a directory that has been moved around within the repository\&. If this feature is disabled, the branches created by
1094 will all be linear and not share any history, meaning that there will be no information on where branches were branched off or merged\&. However, following long/convoluted histories can take a long time, so disabling this feature may speed up the cloning process\&. This feature is enabled by default, use \-\-no\-follow\-parent to disable it\&.
1100 config key: svn\&.followparent
1106 .SH "CONFIG FILE\-ONLY OPTIONS"
1108 svn\&.noMetadata, svn\-remote\&.<name>\&.noMetadata
1110 This gets rid of the
1112 lines at the end of every commit\&.
1114 This option can only be used for one\-shot imports as
1116 will not be able to fetch again without metadata\&. Additionally, if you lose your
1117 \fI$GIT_DIR/svn/**/\&.rev_map\&.*\fR
1120 will not be able to rebuild them\&.
1124 command will not work on repositories using this, either\&. Using this conflicts with the
1126 option for (hopefully) obvious reasons\&.
1128 This option is NOT recommended as it makes it difficult to track down old references to SVN revision numbers in existing documentation, bug reports, and archives\&. If you plan to eventually migrate from SVN to Git and are certain about dropping SVN history, consider
1129 \m[blue]\fBgit\-filter\-repo\fR\m[]\&\s-2\u[1]\d\s+2
1130 instead\&. filter\-repo also allows reformatting of metadata for ease\-of\-reading and rewriting authorship info for non\-"svn\&.authorsFile" users\&.
1133 svn\&.useSvmProps, svn\-remote\&.<name>\&.useSvmProps
1137 to re\-map repository URLs and UUIDs from mirrors created using SVN::Mirror (or svk) for metadata\&.
1139 If an SVN revision has a property, "svm:headrev", it is likely that the revision was created by SVN::Mirror (also used by SVK)\&. The property contains a repository UUID and a revision\&. We want to make it look like we are mirroring the original URL, so introduce a helper function that returns the original identity URL and UUID, and use it when generating metadata in commit messages\&.
1142 svn\&.useSvnsyncProps, svn\-remote\&.<name>\&.useSvnsyncprops
1144 Similar to the useSvmProps option; this is for users of the svnsync(1) command distributed with SVN 1\&.4\&.x and later\&.
1147 svn\-remote\&.<name>\&.rewriteRoot
1149 This allows users to create repositories from alternate URLs\&. For example, an administrator could run
1151 on the server locally (accessing via file://) but wish to distribute the repository with a public http:// or svn:// URL in the metadata so users of it will see the public URL\&.
1154 svn\-remote\&.<name>\&.rewriteUUID
1156 Similar to the useSvmProps option; this is for users who need to remap the UUID manually\&. This may be useful in situations where the original UUID is not available via either useSvmProps or useSvnsyncProps\&.
1159 svn\-remote\&.<name>\&.pushurl
1162 \fBremote\&.\fR\fI<name>\fR\fB\&.pushurl\fR, this key is designed to be used in cases where
1164 points to an SVN repository via a read\-only transport, to provide an alternate read/write transport\&. It is assumed that both keys point to the same repository\&. Unlike
1167 is a base path\&. If either
1176 svn\&.brokenSymlinkWorkaround
1178 This disables potentially expensive checks to workaround broken symlinks checked into SVN by broken clients\&. Set this option to "false" if you track a SVN repository with many empty blobs that are not symlinks\&. This option may be changed while
1180 is running and take effect on the next revision fetched\&. If unset,
1182 assumes this option to be "true"\&.
1185 svn\&.pathnameencoding
1187 This instructs git svn to recode pathnames to a given encoding\&. It can be used by windows users and by those who work in non\-utf8 locales to avoid corrupted file names with non\-ASCII characters\&. Valid encodings are the ones supported by Perl\(cqs Encode module\&.
1190 svn\-remote\&.<name>\&.automkdirs
1192 Normally, the "git svn clone" and "git svn rebase" commands attempt to recreate empty directories that are in the Subversion repository\&. If this option is set to "false", then empty directories will only be created if the "git svn mkdirs" command is run explicitly\&. If unset,
1194 assumes this option to be "true"\&.
1197 Since the noMetadata, rewriteRoot, rewriteUUID, useSvnsyncProps and useSvmProps options all affect the metadata generated and used by \fIgit svn\fR; they \fBmust\fR be set in the configuration file before any history is imported and these settings should never be changed once they are set\&.
1199 Additionally, only one of these options can be used per svn\-remote section because they affect the \fIgit\-svn\-id:\fR metadata line, except for rewriteRoot and rewriteUUID which can be used together\&.
1200 .SH "BASIC EXAMPLES"
1202 Tracking and contributing to the trunk of a Subversion\-managed project (ignoring tags and branches):
1208 # Clone a repo (like git clone):
1209 git svn clone http://svn\&.example\&.com/project/trunk
1210 # Enter the newly cloned directory:
1212 # You should be on master branch, double\-check with \*(Aqgit branch\*(Aq
1214 # Do some work and commit locally to Git:
1215 git commit \&.\&.\&.
1216 # Something is committed to SVN, rebase your local changes against the
1217 # latest changes in SVN:
1219 # Now commit your changes (that were committed previously using Git) to SVN,
1220 # as well as automatically updating your working HEAD:
1222 # Append svn:ignore and svn:global\-ignores settings to the default Git exclude file:
1223 git svn show\-ignore >> \&.git/info/exclude
1229 Tracking and contributing to an entire Subversion\-managed project (complete with a trunk, tags and branches):
1235 # Clone a repo with standard SVN directory layout (like git clone):
1236 git svn clone http://svn\&.example\&.com/project \-\-stdlayout \-\-prefix svn/
1237 # Or, if the repo uses a non\-standard directory layout:
1238 git svn clone http://svn\&.example\&.com/project \-T tr \-b branch \-t tag \-\-prefix svn/
1239 # View all branches and tags you have cloned:
1241 # Create a new branch in SVN
1242 git svn branch waldo
1243 # Reset your master to trunk (or any other branch, replacing \*(Aqtrunk\*(Aq
1244 # with the appropriate name):
1245 git reset \-\-hard svn/trunk
1246 # You may only dcommit to one branch/tag/trunk at a time\&. The usage
1247 # of dcommit/rebase/show\-ignore should be the same as above\&.
1253 The initial \fIgit svn clone\fR can be quite time\-consuming (especially for large Subversion repositories)\&. If multiple people (or one person with multiple machines) want to use \fIgit svn\fR to interact with the same Subversion repository, you can do the initial \fIgit svn clone\fR to a repository on a server and have each person clone that repository with \fIgit clone\fR:
1259 # Do the initial import on a server
1260 ssh server "cd /pub && git svn clone http://svn\&.example\&.com/project [options\&.\&.\&.]"
1261 # Clone locally \- make sure the refs/remotes/ space matches the server
1265 git remote add origin server:/pub/project
1266 git config \-\-replace\-all remote\&.origin\&.fetch \*(Aq+refs/remotes/*:refs/remotes/*\*(Aq
1268 # Prevent fetch/pull from remote Git server in the future,
1269 # we only want to use git svn for future updates
1270 git config \-\-remove\-section remote\&.origin
1271 # Create a local branch from one of the branches just fetched
1272 git checkout \-b master FETCH_HEAD
1273 # Initialize \*(Aqgit svn\*(Aq locally (be sure to use the same URL and
1274 # \-\-stdlayout/\-T/\-b/\-t/\-\-prefix options as were used on server)
1275 git svn init http://svn\&.example\&.com/project [options\&.\&.\&.]
1276 # Pull the latest changes from Subversion
1282 .SH "REBASE VS\&. PULL/MERGE"
1284 Prefer to use \fIgit svn rebase\fR or \fIgit rebase\fR, rather than \fIgit pull\fR or \fIgit merge\fR to synchronize unintegrated commits with a \fIgit svn\fR branch\&. Doing so will keep the history of unintegrated commits linear with respect to the upstream SVN repository and allow the use of the preferred \fIgit svn dcommit\fR subcommand to push unintegrated commits back into SVN\&.
1286 Originally, \fIgit svn\fR recommended that developers pulled or merged from the \fIgit svn\fR branch\&. This was because the author favored \fBgit\fR \fBsvn\fR \fBset\-tree\fR \fBB\fR to commit a single head rather than the \fBgit\fR \fBsvn\fR \fBset\-tree\fR \fBA\fR\fB\&.\&.\fR\fBB\fR notation to commit multiple commits\&. Use of \fIgit pull\fR or \fIgit merge\fR with \fBgit\fR \fBsvn\fR \fBset\-tree\fR \fBA\fR\fB\&.\&.\fR\fBB\fR will cause non\-linear history to be flattened when committing into SVN and this can lead to merge commits unexpectedly reversing previous commits in SVN\&.
1287 .SH "MERGE TRACKING"
1289 While \fIgit svn\fR can track copy history (including branches and tags) for repositories adopting a standard layout, it cannot yet represent merge history that happened inside git back upstream to SVN users\&. Therefore it is advised that users keep history as linear as possible inside Git to ease compatibility with SVN (see the CAVEATS section below)\&.
1290 .SH "HANDLING OF SVN BRANCHES"
1292 If \fIgit svn\fR is configured to fetch branches (and \-\-follow\-branches is in effect), it sometimes creates multiple Git branches for one SVN branch, where the additional branches have names of the form \fIbranchname@nnn\fR (with nnn an SVN revision number)\&. These additional branches are created if \fIgit svn\fR cannot find a parent commit for the first commit in an SVN branch, to connect the branch to the history of the other branches\&.
1294 Normally, the first commit in an SVN branch consists of a copy operation\&. \fIgit svn\fR will read this commit to get the SVN revision the branch was created from\&. It will then try to find the Git commit that corresponds to this SVN revision, and use that as the parent of the branch\&. However, it is possible that there is no suitable Git commit to serve as parent\&. This will happen, among other reasons, if the SVN branch is a copy of a revision that was not fetched by \fIgit svn\fR (e\&.g\&. because it is an old revision that was skipped with \fB\-\-revision\fR), or if in SVN a directory was copied that is not tracked by \fIgit svn\fR (such as a branch that is not tracked at all, or a subdirectory of a tracked branch)\&. In these cases, \fIgit svn\fR will still create a Git branch, but instead of using an existing Git commit as the parent of the branch, it will read the SVN history of the directory the branch was copied from and create appropriate Git commits\&. This is indicated by the message "Initializing parent: <branchname>"\&.
1296 Additionally, it will create a special branch named \fI<branchname>@<SVN\-Revision>\fR, where <SVN\-Revision> is the SVN revision number the branch was copied from\&. This branch will point to the newly created parent commit of the branch\&. If in SVN the branch was deleted and later recreated from a different version, there will be multiple such branches with an \fI@\fR\&.
1298 Note that this may mean that multiple Git commits are created for a single SVN revision\&.
1300 An example: in an SVN repository with a standard trunk/tags/branches layout, a directory trunk/sub is created in r\&.100\&. In r\&.200, trunk/sub is branched by copying it to branches/\&. \fIgit svn clone \-s\fR will then create a branch \fIsub\fR\&. It will also create new Git commits for r\&.100 through r\&.199 and use these as the history of branch \fIsub\fR\&. Thus there will be two Git commits for each revision from r\&.100 to r\&.199 (one containing trunk/, one containing trunk/sub/)\&. Finally, it will create a branch \fIsub@200\fR pointing to the new parent commit of branch \fIsub\fR (i\&.e\&. the commit for r\&.200 and trunk/sub/)\&.
1303 For the sake of simplicity and interoperating with Subversion, it is recommended that all \fIgit svn\fR users clone, fetch and dcommit directly from the SVN server, and avoid all \fIgit clone\fR/\fIpull\fR/\fImerge\fR/\fIpush\fR operations between Git repositories and branches\&. The recommended method of exchanging code between Git branches and users is \fIgit format\-patch\fR and \fIgit am\fR, or just \*(Aqdcommit\(cqing to the SVN repository\&.
1305 Running \fIgit merge\fR or \fIgit pull\fR is NOT recommended on a branch you plan to \fIdcommit\fR from because Subversion users cannot see any merges you\(cqve made\&. Furthermore, if you merge or pull from a Git branch that is a mirror of an SVN branch, \fIdcommit\fR may commit to the wrong branch\&.
1307 If you do merge, note the following rule: \fIgit svn dcommit\fR will attempt to commit on top of the SVN commit named in
1313 git log \-\-grep=^git\-svn\-id: \-\-first\-parent \-1
1319 You \fImust\fR therefore ensure that the most recent commit of the branch you want to dcommit to is the \fIfirst\fR parent of the merge\&. Chaos will ensue otherwise, especially if the first parent is an older commit on the same SVN branch\&.
1321 \fIgit clone\fR does not clone branches under the refs/remotes/ hierarchy or any \fIgit svn\fR metadata, or config\&. So repositories created and managed with using \fIgit svn\fR should use \fIrsync\fR for cloning, if cloning is to be done at all\&.
1323 Since \fIdcommit\fR uses rebase internally, any Git branches you \fIgit push\fR to before \fIdcommit\fR on will require forcing an overwrite of the existing ref on the remote repository\&. This is generally considered bad practice, see the \fBgit-push\fR(1) documentation for details\&.
1325 Do not use the \-\-amend option of \fBgit-commit\fR(1) on a change you\(cqve already dcommitted\&. It is considered bad practice to \-\-amend commits you\(cqve already pushed to a remote repository for other users, and dcommit with SVN is analogous to that\&.
1327 When cloning an SVN repository, if none of the options for describing the repository layout is used (\-\-trunk, \-\-tags, \-\-branches, \-\-stdlayout), \fIgit svn clone\fR will create a Git repository with completely linear history, where branches and tags appear as separate directories in the working copy\&. While this is the easiest way to get a copy of a complete repository, for projects with many branches it will lead to a working copy many times larger than just the trunk\&. Thus for projects using the standard directory structure (trunk/branches/tags), it is recommended to clone with option \fB\-\-stdlayout\fR\&. If the project uses a non\-standard structure, and/or if branches and tags are not required, it is easiest to only clone one directory (typically trunk), without giving any repository layout options\&. If the full history with branches and tags is required, the options \fB\-\-trunk\fR / \fB\-\-branches\fR / \fB\-\-tags\fR must be used\&.
1329 When using multiple \-\-branches or \-\-tags, \fIgit svn\fR does not automatically handle name collisions (for example, if two branches from different paths have the same name, or if a branch and a tag have the same name)\&. In these cases, use \fIinit\fR to set up your Git repository then, before your first \fIfetch\fR, edit the $GIT_DIR/config file so that the branches and tags are associated with different name spaces\&. For example:
1335 branches = stable/*:refs/remotes/svn/stable/*
1336 branches = debug/*:refs/remotes/svn/debug/*
1343 \fIgit svn\fR stores [svn\-remote] configuration information in the repository $GIT_DIR/config file\&. It is similar the core Git [remote] sections except \fIfetch\fR keys do not accept glob arguments; but they are instead handled by the \fIbranches\fR and \fItags\fR keys\&. Since some SVN repositories are oddly configured with multiple projects glob expansions such those listed below are allowed:
1349 [svn\-remote "project\-a"]
1350 url = http://server\&.org/svn
1351 fetch = trunk/project\-a:refs/remotes/project\-a/trunk
1352 branches = branches/*/project\-a:refs/remotes/project\-a/branches/*
1353 branches = branches/release_*:refs/remotes/project\-a/branches/release_*
1354 branches = branches/re*se:refs/remotes/project\-a/branches/*
1355 tags = tags/*/project\-a:refs/remotes/project\-a/tags/*
1361 Keep in mind that the * (asterisk) wildcard of the local ref (right of the \fB:\fR) \fBmust\fR be the farthest right path component; however the remote wildcard may be anywhere as long as it\(cqs an independent path component (surrounded by \fB/\fR or EOL)\&. This type of configuration is not automatically created by \fIinit\fR and should be manually entered with a text\-editor or using \fIgit config\fR\&.
1363 Also note that only one asterisk is allowed per word\&. For example:
1369 branches = branches/re*se:refs/remotes/project\-a/branches/*
1375 will match branches \fIrelease\fR, \fIrese\fR, \fIre123se\fR, however
1381 branches = branches/re*s*e:refs/remotes/project\-a/branches/*
1387 will produce an error\&.
1389 It is also possible to fetch a subset of branches or tags by using a comma\-separated list of names within braces\&. For example:
1395 [svn\-remote "huge\-project"]
1396 url = http://server\&.org/svn
1397 fetch = trunk/src:refs/remotes/trunk
1398 branches = branches/{red,green}/src:refs/remotes/project\-a/branches/*
1399 tags = tags/{1\&.0,2\&.0}/src:refs/remotes/project\-a/tags/*
1405 Multiple fetch, branches, and tags keys are supported:
1411 [svn\-remote "messy\-repo"]
1412 url = http://server\&.org/svn
1413 fetch = trunk/project\-a:refs/remotes/project\-a/trunk
1414 fetch = branches/demos/june\-project\-a\-demo:refs/remotes/project\-a/demos/june\-demo
1415 branches = branches/server/*:refs/remotes/project\-a/branches/*
1416 branches = branches/demos/2011/*:refs/remotes/project\-a/2011\-demos/*
1417 tags = tags/server/*:refs/remotes/project\-a/tags/*
1423 Creating a branch in such a configuration requires disambiguating which location to use using the \-d or \-\-destination flag:
1429 $ git svn branch \-d branches/server release\-2\-3\-0
1435 Note that git\-svn keeps track of the highest revision in which a branch or tag has appeared\&. If the subset of branches or tags is changed after fetching, then $GIT_DIR/svn/\&.metadata must be manually edited to remove (or reset) branches\-maxRev and/or tags\-maxRev as appropriate\&.
1438 $GIT_DIR/svn/**/\&.rev_map\&.*
1440 Mapping between Subversion revision numbers and Git commit names\&. In a repository where the noMetadata option is not set, this can be rebuilt from the git\-svn\-id: lines that are at the end of every commit (see the
1441 \fIsvn\&.noMetadata\fR
1442 section above for details)\&.
1446 \fIgit svn rebase\fR
1447 automatically update the rev_map if it is missing or not up to date\&.
1449 automatically rewinds it\&.
1453 We ignore all SVN properties except svn:executable\&. Any unhandled properties are logged to $GIT_DIR/svn/<refname>/unhandled\&.log
1455 Renamed and copied directories are not detected by Git and hence not tracked when committing to SVN\&. I do not plan on adding support for this as it\(cqs quite difficult and time\-consuming to get working for all the possible corner cases (Git doesn\(cqt do it, either)\&. Committing renamed and copied files is fully supported if they\(cqre similar enough for Git to detect them\&.
1457 In SVN, it is possible (though discouraged) to commit changes to a tag (because a tag is just a directory copy, thus technically the same as a branch)\&. When cloning an SVN repository, \fIgit svn\fR cannot know if such a commit to a tag will happen in the future\&. Thus it acts conservatively and imports all SVN tags as branches, prefixing the tag name with \fItags/\fR\&.
1463 Part of the \fBgit\fR(1) suite
1468 \%https://github.com/newren/git-filter-repo