/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

Use central git module.

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
import dulwich as git
21
22
from bzrlib import bzrdir
22
 
from bzrlib.plugins.git.git_dir import GitBzrDirFormat
 
23
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
 
24
from bzrlib.plugins.git.dir import GitBzrDirFormat
23
25
 
24
26
bzrdir.format_registry.register(
25
27
    'git', GitBzrDirFormat,
26
 
    help='GIT - the stupid content tracker.',
27
 
    native=False, hidden=True, experimental=True,
 
28
    help='GIT repository.', 
 
29
    native=False, experimental=True,
28
30
    )
29
31
 
30
32
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)
31
33
 
 
34
 
 
35
class ForeignGit(ForeignVcs):
 
36
    """Foreign Git."""
 
37
 
 
38
 
 
39
git_mapping_registry = VcsMappingRegistry()
 
40
git_mapping_registry.register_lazy('git-experimental', "bzrlib.plugins.git.mapping",
 
41
                                   "BzrGitMappingExperimental")
 
42
foreign_vcs_registry.register("git", ForeignGit(git_mapping_registry), 
 
43
                                      "Stupid content tracker")
 
44
 
 
45
 
32
46
def test_suite():
33
47
    from bzrlib.plugins.git import tests
34
48
    return tests.test_suite()