/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-08-11 12:19:56 UTC
  • mfrom: (6986.2.4 git-graduate)
  • Revision ID: breezy.the.bot@gmail.com-20180811121956-vg4h6snulccpy99e
Move git support to breezy.git.

Merged from https://code.launchpad.net/~jelmer/brz/git-graduate/+merge/348051

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    write_packed_refs,
65
65
    )
66
66
 
67
 
from ... import (
 
67
from .. import (
68
68
    osutils,
69
69
    transport as _mod_transport,
70
70
    urlutils,
71
71
    )
72
 
from ...sixish import (
 
72
from ..sixish import (
73
73
    PY3,
74
74
    text_type,
75
75
    )
76
 
from ...errors import (
 
76
from ..errors import (
77
77
    AlreadyControlDirError,
78
78
    FileExists,
79
79
    LockBroken,
85
85
    TransportNotPossible,
86
86
    )
87
87
 
88
 
from ...lock import LogicalLockResult
 
88
from ..lock import LogicalLockResult
89
89
 
90
90
 
91
91
class TransportRefsContainer(RefsContainer):