Release 0.11.0.
[bzr-fastimport.git] / __init__.py
blobc77b30224dcb07d771f64afe6b0051275ad48a35
1 # Copyright (C) 2008-2011 Canonical Ltd
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 r"""FastImport Plugin
18 =================
20 The fastimport plugin provides stream-based importing and exporting of
21 data into and out of Bazaar. As well as enabling interchange between
22 multiple VCS tools, fastimport/export can be useful for complex branch
23 operations, e.g. partitioning off part of a code base in order to Open
24 Source it.
26 The normal import recipe is::
28 bzr fast-export-from-xxx SOURCE project.fi
29 bzr fast-import project.fi project.bzr
31 If fast-export-from-xxx doesn't exist yet for the tool you're importing
32 from, the alternative recipe is::
34 front-end > project.fi
35 bzr fast-import project.fi project.bzr
37 In either case, if you wish to save disk space, project.fi can be
38 compressed to gzip format after it is generated like this::
40 (generate project.fi)
41 gzip project.fi
42 bzr fast-import project.fi.gz project.bzr
44 The list of known front-ends and their status is documented on
45 http://bazaar-vcs.org/BzrFastImport/FrontEnds. The fast-export-from-xxx
46 commands provide simplified access to these so that the majority of users
47 can generate a fast-import dump file without needing to study up on all
48 the options - and the best combination of them to use - for the front-end
49 relevant to them. In some cases, a fast-export-from-xxx wrapper will require
50 that certain dependencies are installed so it checks for these before
51 starting. A wrapper may also provide a limited set of options. See the
52 online help for the individual commands for details::
54 bzr help fast-export-from-cvs
55 bzr help fast-export-from-darcs
56 bzr help fast-export-from-hg
57 bzr help fast-export-from-git
58 bzr help fast-export-from-mtn
59 bzr help fast-export-from-p4
60 bzr help fast-export-from-svn
62 Once a fast-import dump file is created, it can be imported into a
63 Bazaar repository using the fast-import command. If required, you can
64 manipulate the stream first using the fast-import-filter command.
65 This is useful for creating a repository with just part of a project
66 or for removing large old binaries (say) from history that are no longer
67 valuable to retain. For further details on importing, manipulating and
68 reporting on fast-import streams, see the online help for the commands::
70 bzr help fast-import
71 bzr help fast-import-filter
72 bzr help fast-import-info
73 bzr help fast-import-query
75 Finally, you may wish to generate a fast-import dump file from a Bazaar
76 repository. The fast-export command is provided for that purpose.
78 To report bugs or publish enhancements, visit the bzr-fastimport project
79 page on Launchpad, https://launchpad.net/bzr-fastimport.
80 """
82 from info import (
83 bzr_plugin_version as version_info,
86 from bzrlib.commands import plugin_cmds
89 def load_fastimport():
90 """Load the fastimport module or raise an appropriate exception."""
91 try:
92 import fastimport
93 except ImportError, e:
94 from bzrlib.errors import DependencyNotPresent
95 raise DependencyNotPresent("fastimport",
96 "bzr-fastimport requires the fastimport python module")
99 def test_suite():
100 import tests
101 return tests.test_suite()
104 for name in [
105 "fast_import",
106 "fast_import_filter",
107 "fast_import_info",
108 "fast_import_query",
109 "fast_export",
110 "fast_export_from_cvs",
111 "fast_export_from_darcs",
112 "fast_export_from_hg",
113 "fast_export_from_git",
114 "fast_export_from_mtn",
115 "fast_export_from_p4",
116 "fast_export_from_svn"
118 plugin_cmds.register_lazy("cmd_%s" % name, [], "bzrlib.plugins.fastimport.cmds")