/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

Add some basic documentation in 'bzr help git'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
from bzrlib.foreign import (
51
51
    foreign_vcs_registry,
52
52
    )
 
53
from bzrlib.help_topics import (
 
54
    topic_registry,
 
55
    )
53
56
from bzrlib.lockable_files import (
54
57
    TransportLock,
55
58
    )
293
296
send_format_registry.register_lazy('git', 'bzrlib.plugins.git.send',
294
297
                                   'send_git', 'Git am-style diff format')
295
298
 
 
299
topic_registry.register_lazy('git',
 
300
                             'bzrlib.plugins.git.help',
 
301
                             'help_git', 'Using Bazaar with Git')
 
302
 
296
303
try:
297
304
    from bzrlib.diff import format_registry as diff_format_registry
298
305
except ImportError: