/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/workingtree.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:
59
59
import stat
60
60
import sys
61
61
 
62
 
from ... import (
 
62
from .. import (
63
63
    conflicts as _mod_conflicts,
64
64
    errors,
65
65
    controldir as _mod_controldir,
74
74
    tree,
75
75
    workingtree,
76
76
    )
77
 
from ...decorators import (
 
77
from ..decorators import (
78
78
    only_raises,
79
79
    )
80
 
from ...bzr import (
 
80
from ..bzr import (
81
81
    inventory,
82
82
    )
83
 
from ...mutabletree import (
 
83
from ..mutabletree import (
84
84
    BadReferenceTarget,
85
85
    MutableTree,
86
86
    )