]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-svn.txt
manpages: italicize git subcommand names (which were in teletype font)
[thirdparty/git.git] / Documentation / git-svn.txt
CommitLineData
3397f9df
EW
1git-svn(1)
2==========
3
4NAME
5----
c3f0baac 6git-svn - Bidirectional operation between a single Subversion branch and git
3397f9df
EW
7
8SYNOPSIS
9--------
b1889c36 10'git svn' <command> [options] [arguments]
3397f9df
EW
11
12DESCRIPTION
13-----------
ba020ef5 14'git-svn' is a simple conduit for changesets between Subversion and git.
5162e697 15It is not to be confused with linkgit:git-svnimport[1], which is
a836a0e1 16read-only.
3397f9df 17
ba020ef5 18'git-svn' was originally designed for an individual developer who wants a
3397f9df 19bidirectional flow of changesets between a single branch in Subversion
0d313b2b 20and an arbitrary number of branches in git. Since its inception,
ba020ef5
JN
21'git-svn' has gained the ability to track multiple branches in a manner
22similar to 'git-svnimport'.
3397f9df 23
ba020ef5 24'git-svn' is especially useful when it comes to tracking repositories
0d313b2b
EW
25not organized in the way Subversion developers recommend (trunk,
26branches, tags directories).
3397f9df
EW
27
28COMMANDS
29--------
0ea4d4c9
JF
30--
31
32'init'::
a836a0e1 33 Initializes an empty git repository with additional
ba020ef5 34 metadata directories for 'git-svn'. The Subversion URL
a836a0e1
EW
35 may be specified as a command-line argument, or as full
36 URL arguments to -T/-t/-b. Optionally, the target
37 directory to operate on can be specified as a second
38 argument. Normally this command initializes the current
39 directory.
3397f9df 40
cc1793e2
KW
41-T<trunk_subdir>;;
42--trunk=<trunk_subdir>;;
43-t<tags_subdir>;;
44--tags=<tags_subdir>;;
45-b<branches_subdir>;;
46--branches=<branches_subdir>;;
8f728fb9 47-s;;
48--stdlayout;;
a836a0e1
EW
49 These are optional command-line options for init. Each of
50 these flags can point to a relative repository path
51 (--tags=project/tags') or a full url
8f728fb9 52 (--tags=https://foo.org/project/tags). The option --stdlayout is
53 a shorthand way of setting trunk,tags,branches as the relative paths,
54 which is the Subversion default. If any of the other options are given
55 as well, they take precedence.
cc1793e2 56--no-metadata;;
0dfaf0a4 57 Set the 'noMetadata' option in the [svn-remote] config.
cc1793e2 58--use-svm-props;;
0dfaf0a4 59 Set the 'useSvmProps' option in the [svn-remote] config.
cc1793e2 60--use-svnsync-props;;
0dfaf0a4 61 Set the 'useSvnsyncProps' option in the [svn-remote] config.
cc1793e2 62--rewrite-root=<URL>;;
0dfaf0a4 63 Set the 'rewriteRoot' option in the [svn-remote] config.
de451dff
AP
64--use-log-author;;
65 When retrieving svn commits into git (as part of fetch, rebase, or
66 dcommit operations), look for the first From: or Signed-off-by: line
67 in the log message and use that as the author string.
9e72732e
AP
68--add-author-from;;
69 When committing to svn from git (as part of commit or dcommit
70 operations), if the existing log message doesn't already have a
71 From: or Signed-off-by: line, append a From: line based on the
72 git commit's author string. If you use this, then --use-log-author
73 will retrieve a valid author string for all commits.
cc1793e2 74--username=<USER>;;
a0d7fe3f
SV
75 For transports that SVN handles authentication for (http,
76 https, and plain svn), specify the username. For other
77 transports (eg svn+ssh://), you must include the username in
78 the URL, eg svn+ssh://foo@svn.bar.com/project
cc1793e2 79--prefix=<prefix>;;
a836a0e1
EW
80 This allows one to specify a prefix which is prepended
81 to the names of remotes if trunk/branches/tags are
82 specified. The prefix does not automatically include a
83 trailing slash, so be sure you include one in the
0d351e9c
GP
84 argument if that is what you want. If --branches/-b is
85 specified, the prefix must include a trailing slash.
86 Setting a prefix is useful if you wish to track multiple
87 projects that share a common repository.
81c5a0e6 88
a836a0e1 89'fetch'::
a836a0e1
EW
90 Fetch unfetched revisions from the Subversion remote we are
91 tracking. The name of the [svn-remote "..."] section in the
92 .git/config file may be specified as an optional command-line
93 argument.
b705ba43 94
a81ed0b6
EW
95'clone'::
96 Runs 'init' and 'fetch'. It will automatically create a
97 directory based on the basename of the URL passed to it;
98 or if a second argument is passed; it will create a directory
99 and work within that. It accepts all arguments that the
100 'init' and 'fetch' commands accept; with the exception of
101 '--fetch-all'. After a repository is cloned, the 'fetch'
102 command will be able to update revisions without affecting
103 the working tree; and the 'rebase' command will be able
104 to update the working tree with the latest changes.
105
106'rebase'::
107 This fetches revisions from the SVN parent of the current HEAD
108 and rebases the current (uncommitted to SVN) work against it.
109
ba020ef5
JN
110This works similarly to `svn update` or 'git-pull' except that
111it preserves linear history with 'git-rebase' instead of
112'git-merge' for ease of dcommiting with 'git-svn'.
a81ed0b6 113
ba020ef5 114This accepts all options that 'git-svn fetch' and 'git-rebase'
483bc4f0 115accept. However, '--fetch-all' only fetches from the current
112f6385 116[svn-remote], and not all [svn-remote] definitions.
a81ed0b6 117
ba020ef5 118Like 'git-rebase'; this requires that the working tree be clean
112f6385 119and have no uncommitted changes.
cc1793e2 120
dee41f3e
EW
121-l;;
122--local;;
ba020ef5 123 Do not fetch remotely; only run 'git-rebase' against the
dee41f3e 124 last fetched commit from the upstream SVN.
a81ed0b6 125
b22d4497 126'dcommit'::
2eff1425 127 Commit each diff from a specified head directly to the SVN
b22d4497 128 repository, and then rebase or reset (depending on whether or
2eff1425
EW
129 not there is a diff between SVN and head). This will create
130 a revision in SVN for each commit in git.
ba020ef5 131 It is recommended that you run 'git-svn' fetch and rebase (not
2eff1425
EW
132 pull or merge) your commits against the latest changes in the
133 SVN repository.
dd31da2f
EW
134 An optional command-line argument may be specified as an
135 alternative to HEAD.
3289e86e 136 This is advantageous over 'set-tree' (below) because it produces
b22d4497 137 cleaner, more linear history.
171af110
KW
138+
139--no-rebase;;
140 After committing, do not rebase or reset.
112f6385 141--
b22d4497 142
e8f5d908
EW
143'log'::
144 This should make it easy to look up svn log messages when svn
145 users refer to -r/--revision numbers.
112f6385
SV
146+
147The following features from `svn log' are supported:
148+
149--
150--revision=<n>[:<n>];;
151 is supported, non-numeric args are not:
152 HEAD, NEXT, BASE, PREV, etc ...
153-v/--verbose;;
154 it's not completely compatible with the --verbose
155 output in svn log, but reasonably close.
156--limit=<n>;;
157 is NOT the same as --max-count, doesn't count
158 merged/excluded commits
159--incremental;;
160 supported
161--
162+
163New features:
164+
165--
166--show-commit;;
167 shows the git commit sha1, as well
168--oneline;;
169 our version of --pretty=oneline
170--
171+
a50a5c8f
MV
172NOTE: SVN itself only stores times in UTC and nothing else. The regular svn
173client converts the UTC time to the local time (or based on the TZ=
174environment). This command has the same behaviour.
175+
ba020ef5 176Any other arguments are passed directly to 'git-log'
e8f5d908 177
6fb5375e 178'blame'::
4be40381
SG
179 Show what revision and author last modified each line of a file. The
180 output of this mode is format-compatible with the output of
181 `svn blame' by default. Like the SVN blame command,
182 local uncommitted changes in the working copy are ignored;
183 the version of the file in the HEAD revision is annotated. Unknown
ba020ef5 184 arguments are passed directly to 'git-blame'.
6fb5375e 185+
4be40381 186--git-format;;
ba020ef5 187 Produce output in the same format as 'git-blame', but with
4be40381
SG
188 SVN revision numbers instead of git commit hashes. In this mode,
189 changes that haven't been committed to SVN (including local
190 working-copy edits) are shown as revision 0.
6fb5375e 191
112f6385 192--
26e60160
AR
193'find-rev'::
194 When given an SVN revision number of the form 'rN', returns the
b3cb7e45
AR
195 corresponding git commit hash (this can optionally be followed by a
196 tree-ish to specify which branch should be searched). When given a
197 tree-ish, returns the corresponding SVN revision number.
26e60160 198
3289e86e 199'set-tree'::
e8f5d908 200 You should consider using 'dcommit' instead of this command.
3397f9df
EW
201 Commit specified commit or tree objects to SVN. This relies on
202 your imported fetch data being up-to-date. This makes
203 absolutely no attempts to do patching when committing to SVN, it
204 simply overwrites files with those specified in the tree or
205 commit. All merging is assumed to have taken place
ba020ef5 206 independently of 'git-svn' functions.
3397f9df 207
da060c67 208'create-ignore'::
da060c67
GH
209 Recursively finds the svn:ignore property on directories and
210 creates matching .gitignore files. The resulting files are staged to
69239728
GH
211 be committed, but are not committed. Use -r/--revision to refer to a
212 specfic revision.
da060c67 213
0ea4d4c9 214'show-ignore'::
8f22562c
EW
215 Recursively finds and lists the svn:ignore property on
216 directories. The output is suitable for appending to
217 the $GIT_DIR/info/exclude file.
218
e8f5d908
EW
219'commit-diff'::
220 Commits the diff of two tree-ish arguments from the
23bfbb81 221 command-line. This command is intended for interoperability with
ba020ef5 222 'git-svnimport' and does not rely on being inside an `git-svn
483bc4f0 223 init`-ed repository. This command takes three arguments, (a) the
e8f5d908
EW
224 original tree to diff against, (b) the new tree result, (c) the
225 URL of the target Subversion repository. The final argument
ba020ef5
JN
226 (URL) may be omitted if you are working from a 'git-svn'-aware
227 repository (that has been `init`-ed with 'git-svn').
45bf473a 228 The -r<revision> option is required for this.
e8f5d908 229
e6fefa92
DK
230'info'::
231 Shows information about a file or directory similar to what
232 `svn info' provides. Does not currently support a -r/--revision
8b014d71
DK
233 argument. Use the --url option to output only the value of the
234 'URL:' field.
e6fefa92 235
69239728
GH
236'proplist'::
237 Lists the properties stored in the Subversion repository about a
238 given file or directory. Use -r/--revision to refer to a specific
239 Subversion revision.
240
241'propget'::
242 Gets the Subversion property given as the first argument, for a
243 file. A specific revision can be specified with -r/--revision.
244
245'show-externals'::
246 Shows the Subversion externals. Use -r/--revision to specify a
247 specific revision.
248
0ea4d4c9
JF
249--
250
3397f9df
EW
251OPTIONS
252-------
0ea4d4c9
JF
253--
254
a836a0e1 255--shared[={false|true|umask|group|all|world|everybody}]::
e8f5d908
EW
256--template=<template_directory>::
257 Only used with the 'init' command.
ba020ef5 258 These are passed directly to 'git-init'.
e8f5d908 259
3397f9df
EW
260-r <ARG>::
261--revision <ARG>::
3397f9df 262
a836a0e1 263Used with the 'fetch' command.
0ea4d4c9 264
a836a0e1
EW
265This allows revision ranges for partial/cauterized history
266to be supported. $NUMBER, $NUMBER1:$NUMBER2 (numeric ranges),
267$NUMBER:HEAD, and BASE:$NUMBER are all supported.
3397f9df 268
a836a0e1
EW
269This can allow you to make partial mirrors when running fetch;
270but is generally not recommended because history will be skipped
271and lost.
3397f9df
EW
272
273-::
274--stdin::
3397f9df 275
3289e86e 276Only used with the 'set-tree' command.
0ea4d4c9
JF
277
278Read a list of commits from stdin and commit them in reverse
279order. Only the leading sha1 is read from each line, so
ba020ef5 280'git-rev-list --pretty=oneline' output can be used.
3397f9df
EW
281
282--rmdir::
3397f9df 283
3289e86e 284Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
0ea4d4c9
JF
285
286Remove directories from the SVN tree if there are no files left
287behind. SVN can version empty directories, and they are not
288removed by default if there are no files left in them. git
289cannot version empty directories. Enabling this flag will make
290the commit to SVN act like git.
3397f9df 291
e0d10e1c 292config key: svn.rmdir
20b1d700 293
3397f9df
EW
294-e::
295--edit::
3397f9df 296
3289e86e 297Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
3397f9df 298
0ea4d4c9
JF
299Edit the commit message before committing to SVN. This is off by
300default for objects that are commits, and forced on when committing
301tree objects.
302
e0d10e1c 303config key: svn.edit
20b1d700 304
72942938
EW
305-l<num>::
306--find-copies-harder::
72942938 307
3289e86e 308Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
0ea4d4c9 309
ba020ef5 310They are both passed directly to 'git-diff-tree'; see
5162e697 311linkgit:git-diff-tree[1] for more information.
72942938 312
0ea4d4c9 313[verse]
e0d10e1c
TP
314config key: svn.l
315config key: svn.findcopiesharder
20b1d700 316
81c5a0e6
EW
317-A<filename>::
318--authors-file=<filename>::
319
ba020ef5
JN
320Syntax is compatible with the files used by 'git-svnimport' and
321'git-cvsimport':
81c5a0e6
EW
322
323------------------------------------------------------------------------
0ea4d4c9 324 loginname = Joe User <user@example.com>
81c5a0e6
EW
325------------------------------------------------------------------------
326
ba020ef5
JN
327If this option is specified and 'git-svn' encounters an SVN
328committer name that does not exist in the authors-file, 'git-svn'
0ea4d4c9 329will abort operation. The user will then have to add the
ba020ef5 330appropriate entry. Re-running the previous 'git-svn' command
0ea4d4c9 331after the authors-file is modified should continue operation.
81c5a0e6 332
e0d10e1c 333config key: svn.authorsfile
e8f5d908
EW
334
335-q::
336--quiet::
ba020ef5 337 Make 'git-svn' less verbose.
e8f5d908
EW
338
339--repack[=<n>]::
112f6385
SV
340--repack-flags=<flags>::
341
342These should help keep disk usage sane for large fetches
343with many revisions.
e8f5d908 344
112f6385
SV
345--repack takes an optional argument for the number of revisions
346to fetch before repacking. This defaults to repacking every
3471000 commits fetched if no argument is specified.
e8f5d908 348
ba020ef5 349--repack-flags are passed directly to 'git-repack'.
e8f5d908 350
112f6385 351[verse]
e0d10e1c
TP
352config key: svn.repack
353config key: svn.repackflags
0ea4d4c9 354
b22d4497
EW
355-m::
356--merge::
357-s<strategy>::
358--strategy=<strategy>::
359
a81ed0b6 360These are only used with the 'dcommit' and 'rebase' commands.
b22d4497 361
ba020ef5
JN
362Passed directly to 'git-rebase' when using 'dcommit' if a
363'git-reset' cannot be used (see 'dcommit').
b22d4497
EW
364
365-n::
366--dry-run::
367
7d45e146 368This can be used with the 'dcommit' and 'rebase' commands.
b22d4497 369
7d45e146 370For 'dcommit', print out the series of git arguments that would show
b22d4497
EW
371which diffs would be committed to SVN.
372
7d45e146
SF
373For 'rebase', display the local branch associated with the upstream svn
374repository associated with the current branch and the URL of svn
375repository that will be fetched from.
376
0ea4d4c9 377--
81c5a0e6 378
448c81b4
EW
379ADVANCED OPTIONS
380----------------
0ea4d4c9
JF
381--
382
448c81b4
EW
383-i<GIT_SVN_ID>::
384--id <GIT_SVN_ID>::
0ea4d4c9 385
a836a0e1
EW
386This sets GIT_SVN_ID (instead of using the environment). This
387allows the user to override the default refname to fetch from
388when tracking a single URL. The 'log' and 'dcommit' commands
389no longer require this switch as an argument.
0ea4d4c9 390
9760adcc
EW
391-R<remote name>::
392--svn-remote <remote name>::
393 Specify the [svn-remote "<remote name>"] section to use,
a836a0e1
EW
394 this allows SVN multiple repositories to be tracked.
395 Default: "svn"
9760adcc 396
e8f5d908
EW
397--follow-parent::
398 This is especially helpful when we're tracking a directory
399 that has been moved around within the repository, or if we
400 started tracking a branch and never tracked the trunk it was
0bed5eaa
EW
401 descended from. This feature is enabled by default, use
402 --no-follow-parent to disable it.
e8f5d908 403
e0d10e1c 404config key: svn.followparent
e8f5d908 405
a81ed0b6
EW
406--
407CONFIG FILE-ONLY OPTIONS
408------------------------
409--
410
0dfaf0a4
EW
411svn.noMetadata::
412svn-remote.<name>.noMetadata::
e8f5d908 413
483bc4f0 414This gets rid of the 'git-svn-id:' lines at the end of every commit.
112f6385 415
ba020ef5 416If you lose your .git/svn/git-svn/.rev_db file, 'git-svn' will not
112f6385
SV
417be able to rebuild it and you won't be able to fetch again,
418either. This is fine for one-shot imports.
e8f5d908 419
ba020ef5 420The 'git-svn log' command will not work on repositories using
112f6385
SV
421this, either. Using this conflicts with the 'useSvmProps'
422option for (hopefully) obvious reasons.
97ae0911 423
0dfaf0a4
EW
424svn.useSvmProps::
425svn-remote.<name>.useSvmProps::
97ae0911 426
ba020ef5 427This allows 'git-svn' to re-map repository URLs and UUIDs from
112f6385
SV
428mirrors created using SVN::Mirror (or svk) for metadata.
429
430If an SVN revision has a property, "svm:headrev", it is likely
431that the revision was created by SVN::Mirror (also used by SVK).
432The property contains a repository UUID and a revision. We want
433to make it look like we are mirroring the original URL, so
434introduce a helper function that returns the original identity
435URL and UUID, and use it when generating metadata in commit
436messages.
97ae0911 437
0dfaf0a4
EW
438svn.useSvnsyncProps::
439svn-remote.<name>.useSvnsyncprops::
a81ed0b6
EW
440 Similar to the useSvmProps option; this is for users
441 of the svnsync(1) command distributed with SVN 1.4.x and
442 later.
443
0dfaf0a4 444svn-remote.<name>.rewriteRoot::
a81ed0b6 445 This allows users to create repositories from alternate
ba020ef5 446 URLs. For example, an administrator could run 'git-svn' on the
a81ed0b6
EW
447 server locally (accessing via file://) but wish to distribute
448 the repository with a public http:// or svn:// URL in the
449 metadata so users of it will see the public URL.
450
3b2bbe9b
JK
451--
452
a81ed0b6 453Since the noMetadata, rewriteRoot, useSvnsyncProps and useSvmProps
ba020ef5 454options all affect the metadata generated and used by 'git-svn'; they
a81ed0b6
EW
455*must* be set in the configuration file before any history is imported
456and these settings should never be changed once they are set.
457
458Additionally, only one of these four options can be used per-svn-remote
459section because they affect the 'git-svn-id:' metadata line.
e8f5d908 460
448c81b4 461
112f6385
SV
462BASIC EXAMPLES
463--------------
3397f9df 464
06ada152 465Tracking and contributing to the trunk of a Subversion-managed project:
3397f9df 466
20b1d700 467------------------------------------------------------------------------
a81ed0b6 468# Clone a repo (like git clone):
b1889c36 469 git svn clone http://svn.foo.org/project/trunk
a81ed0b6
EW
470# Enter the newly cloned directory:
471 cd trunk
472# You should be on master branch, double-check with git-branch
473 git branch
474# Do some work and commit locally to git:
475 git commit ...
476# Something is committed to SVN, rebase your local changes against the
477# latest changes in SVN:
b1889c36 478 git svn rebase
a81ed0b6
EW
479# Now commit your changes (that were committed previously using git) to SVN,
480# as well as automatically updating your working HEAD:
b1889c36 481 git svn dcommit
20b1d700 482# Append svn:ignore settings to the default git exclude file:
b1889c36 483 git svn show-ignore >> .git/info/exclude
20b1d700 484------------------------------------------------------------------------
3397f9df 485
0d313b2b
EW
486Tracking and contributing to an entire Subversion-managed project
487(complete with a trunk, tags and branches):
0d313b2b
EW
488
489------------------------------------------------------------------------
a81ed0b6 490# Clone a repo (like git clone):
b1889c36 491 git svn clone http://svn.foo.org/project -T trunk -b branches -t tags
a81ed0b6
EW
492# View all branches and tags you have cloned:
493 git branch -r
494# Reset your master to trunk (or any other branch, replacing 'trunk'
495# with the appropriate name):
496 git reset --hard remotes/trunk
497# You may only dcommit to one branch/tag/trunk at a time. The usage
20f50f16 498# of dcommit/rebase/show-ignore should be the same as above.
0d313b2b
EW
499------------------------------------------------------------------------
500
ba020ef5 501The initial 'git-svn clone' can be quite time-consuming
7d4aef40
AR
502(especially for large Subversion repositories). If multiple
503people (or one person with multiple machines) want to use
ba020ef5
JN
504'git-svn' to interact with the same Subversion repository, you can
505do the initial 'git-svn clone' to a repository on a server and
506have each person clone that repository with 'git-clone':
7d4aef40
AR
507
508------------------------------------------------------------------------
509# Do the initial import on a server
b1889c36 510 ssh server "cd /pub && git svn clone http://svn.foo.org/project
2b0d1033
SV
511# Clone locally - make sure the refs/remotes/ space matches the server
512 mkdir project
513 cd project
b1889c36 514 git init
2b0d1033 515 git remote add origin server:/pub/project
762656e0 516 git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*'
2b0d1033 517 git fetch
7d4aef40 518# Initialize git-svn locally (be sure to use the same URL and -T/-b/-t options as were used on server)
b1889c36 519 git svn init http://svn.foo.org/project
7d4aef40 520# Pull the latest changes from Subversion
b1889c36 521 git svn rebase
7d4aef40
AR
522------------------------------------------------------------------------
523
2eff1425
EW
524REBASE VS. PULL/MERGE
525---------------------
2e93115e 526
ba020ef5 527Originally, 'git-svn' recommended that the 'remotes/git-svn' branch be
2eff1425 528pulled or merged from. This is because the author favored
483bc4f0
JN
529`git svn set-tree B` to commit a single head rather than the
530`git svn set-tree A..B` notation to commit multiple commits.
2eff1425 531
483bc4f0 532If you use `git svn set-tree A..B` to commit several diffs and you do
2eff1425 533not have the latest remotes/git-svn merged into my-branch, you should
483bc4f0
JN
534use `git svn rebase` to update your work branch instead of `git pull` or
535`git merge`. `pull`/`merge' can cause non-linear history to be flattened
2eff1425
EW
536when committing into SVN, which can lead to merge commits reversing
537previous commits in SVN.
2e93115e 538
3397f9df
EW
539DESIGN PHILOSOPHY
540-----------------
541Merge tracking in Subversion is lacking and doing branched development
ba020ef5 542with Subversion can be cumbersome as a result. While 'git-svn' can track
bd43098c
EW
543copy history (including branches and tags) for repositories adopting a
544standard layout, it cannot yet represent merge history that happened
545inside git back upstream to SVN users. Therefore it is advised that
546users keep history as linear as possible inside git to ease
547compatibility with SVN (see the CAVEATS section below).
1d52aba8 548
aabb2e51
EW
549CAVEATS
550-------
551
552For the sake of simplicity and interoperating with a less-capable system
ba020ef5 553(SVN), it is recommended that all 'git-svn' users clone, fetch and dcommit
5833d730 554directly from the SVN server, and avoid all 'git-clone'/'pull'/'merge'/'push'
aabb2e51
EW
555operations between git repositories and branches. The recommended
556method of exchanging code between git branches and users is
ba020ef5 557'git-format-patch' and 'git-am', or just 'dcommit'ing to the SVN repository.
aabb2e51 558
ba020ef5 559Running 'git-merge' or 'git-pull' is NOT recommended on a branch you
483bc4f0 560plan to 'dcommit' from. Subversion does not represent merges in any
aabb2e51
EW
561reasonable or useful fashion; so users using Subversion cannot see any
562merges you've made. Furthermore, if you merge or pull from a git branch
483bc4f0 563that is a mirror of an SVN branch, 'dcommit' may commit to the wrong
aabb2e51
EW
564branch.
565
ba020ef5
JN
566'git-clone' does not clone branches under the refs/remotes/ hierarchy or
567any 'git-svn' metadata, or config. So repositories created and managed with
2fd02c92 568using 'git-svn' should use 'rsync' for cloning, if cloning is to be done
aabb2e51
EW
569at all.
570
ba020ef5 571Since 'dcommit' uses rebase internally, any git branches you 'git-push' to
483bc4f0 572before 'dcommit' on will require forcing an overwrite of the existing ref
aabb2e51 573on the remote repository. This is generally considered bad practice,
483bc4f0 574see the linkgit:git-push[1] documentation for details.
aabb2e51 575
483bc4f0 576Do not use the --amend option of linkgit:git-commit[1] on a change you've
aabb2e51
EW
577already dcommitted. It is considered bad practice to --amend commits
578you've already pushed to a remote repository for other users, and
579dcommit with SVN is analogous to that.
580
3397f9df
EW
581BUGS
582----
e8f5d908 583
a81ed0b6
EW
584We ignore all SVN properties except svn:executable. Any unhandled
585properties are logged to $GIT_DIR/svn/<refname>/unhandled.log
3397f9df 586
bbe0c9b8
EW
587Renamed and copied directories are not detected by git and hence not
588tracked when committing to SVN. I do not plan on adding support for
589this as it's quite difficult and time-consuming to get working for all
a81ed0b6
EW
590the possible corner cases (git doesn't do it, either). Committing
591renamed and copied files are fully supported if they're similar enough
592for git to detect them.
bbe0c9b8 593
a836a0e1
EW
594CONFIGURATION
595-------------
596
ba020ef5 597'git-svn' stores [svn-remote] configuration information in the
a836a0e1
EW
598repository .git/config file. It is similar the core git
599[remote] sections except 'fetch' keys do not accept glob
600arguments; but they are instead handled by the 'branches'
601and 'tags' keys. Since some SVN repositories are oddly
602configured with multiple projects glob expansions such those
603listed below are allowed:
604
605------------------------------------------------------------------------
606[svn-remote "project-a"]
607 url = http://server.org/svn
608 branches = branches/*/project-a:refs/remotes/project-a/branches/*
609 tags = tags/*/project-a:refs/remotes/project-a/tags/*
610 trunk = trunk/project-a:refs/remotes/project-a/trunk
611------------------------------------------------------------------------
612
613Keep in mind that the '*' (asterisk) wildcard of the local ref
d37a8de0 614(right of the ':') *must* be the farthest right path component;
a836a0e1 615however the remote wildcard may be anywhere as long as it's own
02783075 616independent path component (surrounded by '/' or EOL). This
a836a0e1 617type of configuration is not automatically created by 'init' and
ba020ef5 618should be manually entered with a text-editor or using 'git-config'.
a836a0e1 619
2e93115e
EW
620SEE ALSO
621--------
5162e697 622linkgit:git-rebase[1]
2e93115e 623
3397f9df
EW
624Author
625------
626Written by Eric Wong <normalperson@yhbt.net>.
627
628Documentation
629-------------
630Written by Eric Wong <normalperson@yhbt.net>.