/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to __init__.py

Merge removal of exporters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
The normal import recipe is::
26
26
 
27
 
  bzr fast-export-from-xxx SOURCE project.fi
28
 
  bzr fast-import project.fi project.bzr
29
 
 
30
 
If fast-export-from-xxx doesn't exist yet for the tool you're importing
31
 
from, the alternative recipe is::
32
 
 
33
27
  front-end > project.fi
34
28
  bzr fast-import project.fi project.bzr
35
29
 
41
35
  bzr fast-import project.fi.gz project.bzr
42
36
 
43
37
The list of known front-ends and their status is documented on
44
 
http://bazaar-vcs.org/BzrFastImport/FrontEnds. The fast-export-from-xxx
45
 
commands provide simplified access to these so that the majority of users
46
 
can generate a fast-import dump file without needing to study up on all
47
 
the options - and the best combination of them to use - for the front-end
48
 
relevant to them. In some cases, a fast-export-from-xxx wrapper will require
49
 
that certain dependencies are installed so it checks for these before
50
 
starting. A wrapper may also provide a limited set of options. See the
51
 
online help for the individual commands for details::
52
 
 
53
 
  bzr help fast-export-from-cvs
54
 
  bzr help fast-export-from-darcs
55
 
  bzr help fast-export-from-hg
56
 
  bzr help fast-export-from-git
57
 
  bzr help fast-export-from-mtn
58
 
  bzr help fast-export-from-p4
59
 
  bzr help fast-export-from-svn
 
38
http://bazaar-vcs.org/BzrFastImport/FrontEnds.
60
39
 
61
40
Once a fast-import dump file is created, it can be imported into a
62
41
Bazaar repository using the fast-import command. If required, you can
108
87
        "fast_import_info",
109
88
        "fast_import_query",
110
89
        "fast_export",
111
 
        "fast_export_from_cvs",
112
 
        "fast_export_from_darcs",
113
 
        "fast_export_from_hg",
114
 
        "fast_export_from_git",
115
 
        "fast_export_from_mtn",
116
 
        "fast_export_from_p4",
117
 
        "fast_export_from_svn"
118
90
        ]:
119
91
    plugin_cmds.register_lazy("cmd_%s" % name, [], "bzrlib.plugins.fastimport.cmds")