/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/remote.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:
21
21
from io import BytesIO
22
22
import re
23
23
 
24
 
from ... import (
 
24
from .. import (
25
25
    config,
26
26
    debug,
27
27
    errors,
30
30
    ui,
31
31
    urlutils,
32
32
    )
33
 
from ...push import (
 
33
from ..push import (
34
34
    PushResult,
35
35
    )
36
 
from ...errors import (
 
36
from ..errors import (
37
37
    AlreadyBranchError,
38
38
    BzrError,
39
39
    DivergedBranches,
47
47
    NoWorkingTree,
48
48
    UninitializableFormat,
49
49
    )
50
 
from ...revisiontree import RevisionTree
51
 
from ...sixish import text_type
52
 
from ...transport import (
 
50
from ..revisiontree import RevisionTree
 
51
from ..sixish import text_type
 
52
from ..transport import (
53
53
    Transport,
54
54
    register_urlparse_netloc_protocol,
55
55
    )
267
267
class DulwichSSHVendor(dulwich.client.SSHVendor):
268
268
 
269
269
    def __init__(self):
270
 
        from ...transport import ssh
 
270
        from ..transport import ssh
271
271
        self.bzr_ssh_vendor = ssh._get_ssh_vendor()
272
272
 
273
273
    def run_command(self, host, command, username=None, port=None):