/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

Register git protocols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    )
39
39
from bzrlib.transport import (
40
40
    register_lazy_transport,
 
41
    register_transport_proto,
41
42
    )
42
43
from bzrlib.commands import (
43
44
    plugin_cmds,
220
221
bzrdir.BzrDirFormat.register_control_format(LocalGitBzrDirFormat)
221
222
bzrdir.BzrDirFormat.register_control_format(RemoteGitBzrDirFormat)
222
223
 
 
224
register_transport_proto('git://', 
 
225
        help="Access using the Git smart server protocol.")
 
226
register_transport_proto('git+ssh://', 
 
227
        help="Access using the Git smart server protocol over SSH.")
 
228
 
223
229
register_lazy_transport("git://", 'bzrlib.plugins.git.remote',
224
230
                        'TCPGitSmartTransport')
225
231