/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/branch.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:
28
28
    )
29
29
from dulwich.repo import check_ref_format
30
30
 
31
 
from ... import (
 
31
from .. import (
32
32
    branch,
33
33
    config,
34
34
    controldir,
41
41
    transport,
42
42
    urlutils,
43
43
    )
44
 
from ...revision import (
 
44
from ..revision import (
45
45
    NULL_REVISION,
46
46
    )
47
 
from ...trace import (
 
47
from ..trace import (
48
48
    is_quiet,
49
49
    mutter,
50
50
    warning,
74
74
    )
75
75
from .urls import git_url_to_bzr_url
76
76
 
77
 
from ...foreign import ForeignBranch
 
77
from ..foreign import ForeignBranch
78
78
 
79
79
 
80
80
class GitPullResult(branch.PullResult):