/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/fetch.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:
33
33
import posixpath
34
34
import stat
35
35
 
36
 
from ... import (
 
36
from .. import (
37
37
    debug,
38
38
    errors,
39
39
    osutils,
40
40
    trace,
41
41
    ui,
42
42
    )
43
 
from ...errors import (
 
43
from ..errors import (
44
44
    BzrError,
45
45
    )
46
 
from ...bzr.inventory import (
 
46
from ..bzr.inventory import (
47
47
    InventoryDirectory,
48
48
    InventoryFile,
49
49
    InventoryLink,
50
50
    TreeReference,
51
51
    )
52
 
from ...repository import (
 
52
from ..repository import (
53
53
    InterRepository,
54
54
    )
55
 
from ...revision import (
 
55
from ..revision import (
56
56
    NULL_REVISION,
57
57
    )
58
 
from ...bzr.inventorytree import InventoryRevisionTree
59
 
from ...testament import (
 
58
from ..bzr.inventorytree import InventoryRevisionTree
 
59
from ..testament import (
60
60
    StrictTestament3,
61
61
    )
62
 
from ...tsort import (
 
62
from ..tsort import (
63
63
    topo_sort,
64
64
    )
65
 
from ...bzr.versionedfile import (
 
65
from ..bzr.versionedfile import (
66
66
    ChunkedContentFactory,
67
67
    )
68
68