/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 workingtree.py

  • Committer: John Carr
  • Date: 2009-01-13 20:26:54 UTC
  • mto: (0.217.53 git-serve)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: john.carr@unrouted.co.uk-20090113202654-9hsels0a9r35o7u0
Rename upload-pack and receive-pack so they don't clash with the Git versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    workingtree,
28
28
    )
29
29
 
 
30
from dulwich.index import Index
 
31
 
30
32
class GitWorkingTree(workingtree.WorkingTree):
31
33
    """A Git working tree."""
32
34
 
50
52
 
51
53
        self._format = GitWorkingTreeFormat()
52
54
 
 
55
        self.index = Index(os.path.join(self.repository._git.controldir(), 
 
56
            "index"))
 
57
 
53
58
    def lock_read(self):
54
59
        pass
55
60