/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 in dulwich.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
"""A GIT branch and repository format implementation for bzr."""
20
20
 
21
 
from bzrlib import (
22
 
#    branch,
23
 
    bzrdir,
24
 
#    repository,
25
 
    )
26
 
 
27
 
bzrdir.format_registry.register_lazy('git',
28
 
    'bzrlib.plugins.git.git_dir', 'GitDirFormat',
29
 
    help='GIT - the stupid content tracker.',
30
 
    native=False, hidden=True, experimental=True,
31
 
    )
32
 
 
33
 
# formats which have no format string are not discoverable
34
 
# and not independently creatable, so are not registered.
 
21
from bzrlib import bzrdir
 
22
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
 
23
from bzrlib.plugins.git.dir import GitBzrDirFormat
 
24
 
 
25
bzrdir.format_registry.register(
 
26
    'git', GitBzrDirFormat,
 
27
    help='GIT repository.', 
 
28
    native=False, experimental=True,
 
29
    )
 
30
 
 
31
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)
 
32
 
 
33
 
 
34
class ForeignGit(ForeignVcs):
 
35
    """Foreign Git."""
 
36
 
 
37
 
 
38
git_mapping_registry = VcsMappingRegistry()
 
39
git_mapping_registry.register_lazy('git-experimental', "bzrlib.plugins.git.mapping",
 
40
                                   "BzrGitMappingExperimental")
 
41
foreign_vcs_registry.register("git", ForeignGit(git_mapping_registry), 
 
42
                                      "Stupid content tracker")
35
43
 
36
44
 
37
45
def test_suite():