/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

Black-box text for "bzr log" in a git tree. Further simplification of GitRevisionTree.

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
 
    )
 
21
from bzrlib import bzrdir
 
22
from bzrlib.plugins.git.git_dir import GitBzrDirFormat
26
23
 
27
 
bzrdir.format_registry.register_lazy('git',
28
 
    'bzrlib.plugins.git.git_dir', 'GitDirFormat',
 
24
bzrdir.format_registry.register(
 
25
    'git', GitBzrDirFormat,
29
26
    help='GIT - the stupid content tracker.',
30
27
    native=False, hidden=True, experimental=True,
31
28
    )
32
29
 
33
 
# formats which have no format string are not discoverable
34
 
# and not independently creatable, so are not registered.
35
 
 
 
30
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)
36
31
 
37
32
def test_suite():
38
33
    from bzrlib.plugins.git import tests