/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

Implement GitWorkingTreeFormat._matchingbzrdir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
 
198
198
class GitWorkingTreeFormat(workingtree.WorkingTreeFormat):
199
199
 
 
200
    @property
 
201
    def _matchingbzrdir(self):
 
202
        from bzrlib.plugins.git import LocalGitBzrDirFormat
 
203
        return LocalGitBzrDirFormat()
 
204
 
200
205
    def get_format_description(self):
201
206
        return "Git Working Tree"
202
207