/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 breezy/git/transportgit.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-14 17:59:16 UTC
  • mto: This revision was merged to the branch mainline in revision 7065.
  • Revision ID: jelmer@jelmer.uk-20180614175916-a2e2xh5k533guq1x
Move breezy.plugins.git to breezy.git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    write_packed_refs,
67
67
    )
68
68
 
69
 
from ... import (
 
69
from .. import (
70
70
    transport as _mod_transport,
71
71
    )
72
 
from ...errors import (
 
72
from ..errors import (
73
73
    AlreadyControlDirError,
74
74
    FileExists,
75
75
    LockBroken,
81
81
    TransportNotPossible,
82
82
    )
83
83
 
84
 
from ...lock import LogicalLockResult
 
84
from ..lock import LogicalLockResult
85
85
 
86
86
 
87
87
class TransportRefsContainer(RefsContainer):