/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: 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:
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 ..foreign import ForeignBranch
 
45
from ..revision import (
45
46
    NULL_REVISION,
46
47
    )
47
 
from ...sixish import (
 
48
from ..sixish import (
48
49
    text_type,
49
50
    viewitems,
50
51
    )
51
 
from ...trace import (
 
52
from ..trace import (
52
53
    is_quiet,
53
54
    mutter,
54
55
    warning,
78
79
    )
79
80
from .urls import git_url_to_bzr_url
80
81
 
81
 
from ...foreign import ForeignBranch
82
 
from ...sixish import viewitems
83
82
 
84
83
 
85
84
class GitPullResult(branch.PullResult):