/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: 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:
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 ...sixish import text_type
59
 
from ...bzr.inventorytree import InventoryRevisionTree
60
 
from ...testament import (
 
58
from ..bzr.inventorytree import InventoryRevisionTree
 
59
from ..sixish import text_type
 
60
from ..testament import (
61
61
    StrictTestament3,
62
62
    )
63
 
from ...tsort import (
 
63
from ..tsort import (
64
64
    topo_sort,
65
65
    )
66
 
from ...bzr.versionedfile import (
 
66
from ..bzr.versionedfile import (
67
67
    ChunkedContentFactory,
68
68
    )
69
69