Code

git-svn: fix show-ignore
[git.git] / Documentation / git-svn.txt
1 git-svn(1)
2 ==========
4 NAME
5 ----
6 git-svn - bidirectional operation between Subversion and git
8 SYNOPSIS
9 --------
10 'git-svn' <command> [options] [arguments]
12 DESCRIPTION
13 -----------
14 git-svn is a simple conduit for changesets between Subversion and git.
15 It is not to be confused with gitlink:git-svnimport[1], which is
16 read-only and geared towards tracking multiple branches.
18 git-svn was originally designed for an individual developer who wants a
19 bidirectional flow of changesets between a single branch in Subversion
20 and an arbitrary number of branches in git.  Since its inception,
21 git-svn has gained the ability to track multiple branches in a manner
22 similar to git-svnimport; but it cannot (yet) automatically detect new
23 branches and tags like git-svnimport does.
25 git-svn is especially useful when it comes to tracking repositories
26 not organized in the way Subversion developers recommend (trunk,
27 branches, tags directories).
29 COMMANDS
30 --------
31 --
33 'init'::
34         Creates an empty git repository with additional metadata
35         directories for git-svn.  The Subversion URL must be specified
36         as a command-line argument.  Optionally, the target directory
37         to operate on can be specified as a second argument.  Normally
38         this command initializes the current directory.
40 'fetch'::
42 Fetch unfetched revisions from the Subversion URL we are
43 tracking.  refs/remotes/git-svn will be updated to the
44 latest revision.
46 Note: You should never attempt to modify the remotes/git-svn
47 branch outside of git-svn.  Instead, create a branch from
48 remotes/git-svn and work on that branch.  Use the 'dcommit'
49 command (see below) to write git commits back to
50 remotes/git-svn.
52 See '<<fetch-args,Additional Fetch Arguments>>' if you are interested in
53 manually joining branches on commit.
55 'dcommit'::
56         Commit each diff from a specified head directly to the SVN
57         repository, and then rebase or reset (depending on whether or
58         not there is a diff between SVN and head).  This will create
59         a revision in SVN for each commit in git.
60         It is recommended that you run git-svn fetch and rebase (not
61         pull or merge) your commits against the latest changes in the
62         SVN repository.
63         An optional command-line argument may be specified as an
64         alternative to HEAD.
65         This is advantageous over 'set-tree' (below) because it produces
66         cleaner, more linear history.
68 'log'::
69         This should make it easy to look up svn log messages when svn
70         users refer to -r/--revision numbers.
72         The following features from `svn log' are supported:
74         --revision=<n>[:<n>] - is supported, non-numeric args are not:
75                                HEAD, NEXT, BASE, PREV, etc ...
76         -v/--verbose         - it's not completely compatible with
77                                the --verbose output in svn log, but
78                                reasonably close.
79         --limit=<n>          - is NOT the same as --max-count,
80                                doesn't count merged/excluded commits
81         --incremental        - supported
83         New features:
85         --show-commit        - shows the git commit sha1, as well
86         --oneline            - our version of --pretty=oneline
88         Any other arguments are passed directly to `git log'
90 'set-tree'::
91         You should consider using 'dcommit' instead of this command.
92         Commit specified commit or tree objects to SVN.  This relies on
93         your imported fetch data being up-to-date.  This makes
94         absolutely no attempts to do patching when committing to SVN, it
95         simply overwrites files with those specified in the tree or
96         commit.  All merging is assumed to have taken place
97         independently of git-svn functions.
99 'rebuild'::
100         Not a part of daily usage, but this is a useful command if
101         you've just cloned a repository (using gitlink:git-clone[1]) that was
102         tracked with git-svn.  Unfortunately, git-clone does not clone
103         git-svn metadata and the svn working tree that git-svn uses for
104         its operations.  This rebuilds the metadata so git-svn can
105         resume fetch operations.  A Subversion URL may be optionally
106         specified at the command-line if the directory/repository you're
107         tracking has moved or changed protocols.
109 'show-ignore'::
110         Recursively finds and lists the svn:ignore property on
111         directories.  The output is suitable for appending to
112         the $GIT_DIR/info/exclude file.
114 'commit-diff'::
115         Commits the diff of two tree-ish arguments from the
116         command-line.  This command is intended for interopability with
117         git-svnimport and does not rely on being inside an git-svn
118         init-ed repository.  This command takes three arguments, (a) the
119         original tree to diff against, (b) the new tree result, (c) the
120         URL of the target Subversion repository.  The final argument
121         (URL) may be omitted if you are working from a git-svn-aware
122         repository (that has been init-ed with git-svn).
123         The -r<revision> option is required for this.
125 'graft-branches'::
126         This command attempts to detect merges/branches from already
127         imported history.  Techniques used currently include regexes,
128         file copies, and tree-matches).  This command generates (or
129         modifies) the $GIT_DIR/info/grafts file.  This command is
130         considered experimental, and inherently flawed because
131         merge-tracking in SVN is inherently flawed and inconsistent
132         across different repositories.
134 'multi-init'::
135         This command supports git-svnimport-like command-line syntax for
136         importing repositories that are layed out as recommended by the
137         SVN folks.  This is a bit more tolerant than the git-svnimport
138         command-line syntax and doesn't require the user to figure out
139         where the repository URL ends and where the repository path
140         begins.
142 'multi-fetch'::
143         This runs fetch on all known SVN branches we're tracking.  This
144         will NOT discover new branches (unlike git-svnimport), so
145         multi-init will need to be re-run (it's idempotent).
147 --
149 OPTIONS
150 -------
151 --
153 --shared::
154 --template=<template_directory>::
155         Only used with the 'init' command.
156         These are passed directly to gitlink:git-init-db[1].
158 -r <ARG>::
159 --revision <ARG>::
161 Only used with the 'fetch' command.
163 Takes any valid -r<argument> svn would accept and passes it
164 directly to svn. -r<ARG1>:<ARG2> ranges and "{" DATE "}" syntax
165 is also supported.  This is passed directly to svn, see svn
166 documentation for more details.
168 This can allow you to make partial mirrors when running fetch.
170 -::
171 --stdin::
173 Only used with the 'set-tree' command.
175 Read a list of commits from stdin and commit them in reverse
176 order.  Only the leading sha1 is read from each line, so
177 git-rev-list --pretty=oneline output can be used.
179 --rmdir::
181 Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
183 Remove directories from the SVN tree if there are no files left
184 behind.  SVN can version empty directories, and they are not
185 removed by default if there are no files left in them.  git
186 cannot version empty directories.  Enabling this flag will make
187 the commit to SVN act like git.
189 repo-config key: svn.rmdir
191 -e::
192 --edit::
194 Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
196 Edit the commit message before committing to SVN.  This is off by
197 default for objects that are commits, and forced on when committing
198 tree objects.
200 repo-config key: svn.edit
202 -l<num>::
203 --find-copies-harder::
205 Only used with the 'dcommit', 'set-tree' and 'commit-diff' commands.
207 They are both passed directly to git-diff-tree see
208 gitlink:git-diff-tree[1] for more information.
210 [verse]
211 repo-config key: svn.l
212 repo-config key: svn.findcopiesharder
214 -A<filename>::
215 --authors-file=<filename>::
217 Syntax is compatible with the files used by git-svnimport and
218 git-cvsimport:
220 ------------------------------------------------------------------------
221         loginname = Joe User <user@example.com>
222 ------------------------------------------------------------------------
224 If this option is specified and git-svn encounters an SVN
225 committer name that does not exist in the authors-file, git-svn
226 will abort operation. The user will then have to add the
227 appropriate entry.  Re-running the previous git-svn command
228 after the authors-file is modified should continue operation.
230 repo-config key: svn.authorsfile
232 -q::
233 --quiet::
234         Make git-svn less verbose.  This only affects git-svn if you
235         have the SVN::* libraries installed and are using them.
237 --repack[=<n>]::
238 --repack-flags=<flags>
239         These should help keep disk usage sane for large fetches
240         with many revisions.
242         --repack takes an optional argument for the number of revisions
243         to fetch before repacking.  This defaults to repacking every
244         1000 commits fetched if no argument is specified.
246         --repack-flags are passed directly to gitlink:git-repack[1].
248 repo-config key: svn.repack
249 repo-config key: svn.repackflags
251 -m::
252 --merge::
253 -s<strategy>::
254 --strategy=<strategy>::
256 These are only used with the 'dcommit' command.
258 Passed directly to git-rebase when using 'dcommit' if a
259 'git-reset' cannot be used (see dcommit).
261 -n::
262 --dry-run::
264 This is only used with the 'dcommit' command.
266 Print out the series of git arguments that would show
267 which diffs would be committed to SVN.
269 --
271 ADVANCED OPTIONS
272 ----------------
273 --
275 -b<refname>::
276 --branch <refname>::
277 Used with 'fetch', 'dcommit' or 'set-tree'.
279 This can be used to join arbitrary git branches to remotes/git-svn
280 on new commits where the tree object is equivalent.
282 When used with different GIT_SVN_ID values, tags and branches in
283 SVN can be tracked this way, as can some merges where the heads
284 end up having completely equivalent content.  This can even be
285 used to track branches across multiple SVN _repositories_.
287 This option may be specified multiple times, once for each
288 branch.
290 repo-config key: svn.branch
292 -i<GIT_SVN_ID>::
293 --id <GIT_SVN_ID>::
295 This sets GIT_SVN_ID (instead of using the environment).  See the
296 section on
297 '<<tracking-multiple-repos,Tracking Multiple Repositories or Branches>>'
298 for more information on using GIT_SVN_ID.
300 --follow-parent::
301         This is especially helpful when we're tracking a directory
302         that has been moved around within the repository, or if we
303         started tracking a branch and never tracked the trunk it was
304         descended from.
306         This relies on the SVN::* libraries to work.
308 repo-config key: svn.followparent
310 --no-metadata::
311         This gets rid of the git-svn-id: lines at the end of every commit.
313         With this, you lose the ability to use the rebuild command.  If
314         you ever lose your .git/svn/git-svn/.rev_db file, you won't be
315         able to fetch again, either.  This is fine for one-shot imports.
317         The 'git-svn log' command will not work on repositories using this,
318         either.
320 repo-config key: svn.nometadata
322 --
324 COMPATIBILITY OPTIONS
325 ---------------------
326 --
328 --upgrade::
329 Only used with the 'rebuild' command.
331 Run this if you used an old version of git-svn that used
332 "git-svn-HEAD" instead of "remotes/git-svn" as the branch
333 for tracking the remote.
335 --no-ignore-externals::
336 Only used with the 'fetch' and 'rebuild' command.
338 This command has no effect when you are using the SVN::*
339 libraries with git, svn:externals are always avoided.
341 By default, git-svn passes --ignore-externals to svn to avoid
342 fetching svn:external trees into git.  Pass this flag to enable
343 externals tracking directly via git.
345 Versions of svn that do not support --ignore-externals are
346 automatically detected and this flag will be automatically
347 enabled for them.
349 Otherwise, do not enable this flag unless you know what you're
350 doing.
352 repo-config key: svn.noignoreexternals
354 --ignore-nodate::
355 Only used with the 'fetch' command.
357 By default git-svn will crash if it tries to import a revision
358 from SVN which has '(no date)' listed as the date of the revision.
359 This is repository corruption on SVN's part, plain and simple.
360 But sometimes you really need those revisions anyway.
362 If supplied git-svn will convert '(no date)' entries to the UNIX
363 epoch (midnight on Jan. 1, 1970).  Yes, that's probably very wrong.
364 SVN was very wrong.
366 --
368 Basic Examples
369 ~~~~~~~~~~~~~~
371 Tracking and contributing to a the trunk of a Subversion-managed project:
373 ------------------------------------------------------------------------
374 # Initialize a repo (like git init-db):
375         git-svn init http://svn.foo.org/project/trunk
376 # Fetch remote revisions:
377         git-svn fetch
378 # Create your own branch to hack on:
379         git checkout -b my-branch remotes/git-svn
380 # Do some work, and then commit your new changes to SVN, as well as
381 # automatically updating your working HEAD:
382         git-svn dcommit
383 # Something is committed to SVN, rebase the latest into your branch:
384         git-svn fetch && git rebase remotes/git-svn
385 # Append svn:ignore settings to the default git exclude file:
386         git-svn show-ignore >> .git/info/exclude
387 ------------------------------------------------------------------------
389 Tracking and contributing to an entire Subversion-managed project
390 (complete with a trunk, tags and branches):
391 See also:
392 '<<tracking-multiple-repos,Tracking Multiple Repositories or Branches>>'
394 ------------------------------------------------------------------------
395 # Initialize a repo (like git init-db):
396         git-svn multi-init http://svn.foo.org/project \
397                 -T trunk -b branches -t tags
398 # Fetch remote revisions:
399         git-svn multi-fetch
400 # Create your own branch of trunk to hack on:
401         git checkout -b my-trunk remotes/trunk
402 # Do some work, and then commit your new changes to SVN, as well as
403 # automatically updating your working HEAD:
404         git-svn dcommit -i trunk
405 # Something has been committed to trunk, rebase the latest into your branch:
406         git-svn multi-fetch && git rebase remotes/trunk
407 # Append svn:ignore settings of trunk to the default git exclude file:
408         git-svn show-ignore -i trunk >> .git/info/exclude
409 # Check for new branches and tags (no arguments are needed):
410         git-svn multi-init
411 ------------------------------------------------------------------------
413 REBASE VS. PULL/MERGE
414 ---------------------
416 Originally, git-svn recommended that the remotes/git-svn branch be
417 pulled or merged from.  This is because the author favored
418 'git-svn set-tree B' to commit a single head rather than the
419 'git-svn set-tree A..B' notation to commit multiple commits.
421 If you use 'git-svn set-tree A..B' to commit several diffs and you do
422 not have the latest remotes/git-svn merged into my-branch, you should
423 use 'git rebase' to update your work branch instead of 'git pull' or
424 'git merge'.  'pull/merge' can cause non-linear history to be flattened
425 when committing into SVN, which can lead to merge commits reversing
426 previous commits in SVN.
428 DESIGN PHILOSOPHY
429 -----------------
430 Merge tracking in Subversion is lacking and doing branched development
431 with Subversion is cumbersome as a result.  git-svn does not do
432 automated merge/branch tracking by default and leaves it entirely up to
433 the user on the git side.
435 [[tracking-multiple-repos]]
436 TRACKING MULTIPLE REPOSITORIES OR BRANCHES
437 ------------------------------------------
438 Because git-svn does not care about relationships between different
439 branches or directories in a Subversion repository, git-svn has a simple
440 hack to allow it to track an arbitrary number of related _or_ unrelated
441 SVN repositories via one git repository.  Simply use the --id/-i flag or
442 set the GIT_SVN_ID environment variable to a name other other than
443 "git-svn" (the default) and git-svn will ignore the contents of the
444 $GIT_DIR/svn/git-svn directory and instead do all of its work in
445 $GIT_DIR/svn/$GIT_SVN_ID for that invocation.  The interface branch will
446 be remotes/$GIT_SVN_ID, instead of remotes/git-svn.  Any
447 remotes/$GIT_SVN_ID branch should never be modified by the user outside
448 of git-svn commands.
450 [[fetch-args]]
451 ADDITIONAL FETCH ARGUMENTS
452 --------------------------
453 This is for advanced users, most users should ignore this section.
455 Unfetched SVN revisions may be imported as children of existing commits
456 by specifying additional arguments to 'fetch'.  Additional parents may
457 optionally be specified in the form of sha1 hex sums at the
458 command-line.  Unfetched SVN revisions may also be tied to particular
459 git commits with the following syntax:
461 ------------------------------------------------
462         svn_revision_number=git_commit_sha1
463 ------------------------------------------------
465 This allows you to tie unfetched SVN revision 375 to your current HEAD:
467 ------------------------------------------------
468         git-svn fetch 375=$(git-rev-parse HEAD)
469 ------------------------------------------------
471 Advanced Example: Tracking a Reorganized Repository
472 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
473 Note: this example is now obsolete if you have SVN::* libraries
474 installed.  Simply use --follow-parent when fetching.
476 If you're tracking a directory that has moved, or otherwise been
477 branched or tagged off of another directory in the repository and you
478 care about the full history of the project, then you can read this
479 section.
481 This is how Yann Dirson tracked the trunk of the ufoai directory when
482 the /trunk directory of his repository was moved to /ufoai/trunk and
483 he needed to continue tracking /ufoai/trunk where /trunk left off.
485 ------------------------------------------------------------------------
486         # This log message shows when the repository was reorganized:
487         r166 | ydirson | 2006-03-02 01:36:55 +0100 (Thu, 02 Mar 2006) | 1 line
488         Changed paths:
489            D /trunk
490            A /ufoai/trunk (from /trunk:165)
492         # First we start tracking the old revisions:
493         GIT_SVN_ID=git-oldsvn git-svn init \
494                         https://svn.sourceforge.net/svnroot/ufoai/trunk
495         GIT_SVN_ID=git-oldsvn git-svn fetch -r1:165
497         # And now, we continue tracking the new revisions:
498         GIT_SVN_ID=git-newsvn git-svn init \
499               https://svn.sourceforge.net/svnroot/ufoai/ufoai/trunk
500         GIT_SVN_ID=git-newsvn git-svn fetch \
501               166=`git-rev-parse refs/remotes/git-oldsvn`
502 ------------------------------------------------------------------------
504 BUGS
505 ----
507 If you are not using the SVN::* Perl libraries and somebody commits a
508 conflicting changeset to SVN at a bad moment (right before you commit)
509 causing a conflict and your commit to fail, your svn working tree
510 ($GIT_DIR/git-svn/tree) may be dirtied.  The easiest thing to do is
511 probably just to rm -rf $GIT_DIR/git-svn/tree and run 'rebuild'.   You
512 can avoid this problem entirely by using 'dcommit'.
514 We ignore all SVN properties except svn:executable.  Too difficult to
515 map them since we rely heavily on git write-tree being _exactly_ the
516 same on both the SVN and git working trees and I prefer not to clutter
517 working trees with metadata files.
519 Renamed and copied directories are not detected by git and hence not
520 tracked when committing to SVN.  I do not plan on adding support for
521 this as it's quite difficult and time-consuming to get working for all
522 the possible corner cases (git doesn't do it, either).  Renamed and
523 copied files are fully supported if they're similar enough for git to
524 detect them.
526 SEE ALSO
527 --------
528 gitlink:git-rebase[1]
530 Author
531 ------
532 Written by Eric Wong <normalperson@yhbt.net>.
534 Documentation
535 -------------
536 Written by Eric Wong <normalperson@yhbt.net>.