/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/interrepo.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:
34
34
from dulwich.refs import SYMREF
35
35
from dulwich.walk import Walker
36
36
 
37
 
from ...errors import (
 
37
from ..errors import (
38
38
    DivergedBranches,
39
39
    FetchLimitUnsupported,
40
40
    InvalidRevisionId,
42
42
    NoRoundtrippingSupport,
43
43
    NoSuchRevision,
44
44
    )
45
 
from ...repository import (
 
45
from ..repository import (
46
46
    InterRepository,
47
47
    )
48
 
from ...revision import (
 
48
from ..revision import (
49
49
    NULL_REVISION,
50
50
    )
51
 
from ...sixish import (
 
51
from ..sixish import (
52
52
    viewitems,
 
53
    viewvalues,
53
54
    )
54
 
from ... import (
 
55
from .. import (
55
56
    config,
56
57
    trace,
57
58
    ui,
58
59
    )
59
 
from ...sixish import viewvalues
60
60
 
61
61
from .errors import (
62
62
    NoPushSupport,