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

Use central git module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""An adapter between a Git Repository and a Bazaar Branch"""
18
18
 
19
 
import git
20
19
import os
21
20
import time
22
21
 
43
42
    )
44
43
from bzrlib.plugins.git.mapping import default_mapping
45
44
 
 
45
from bzrlib.plugins.git import git
 
46
 
46
47
 
47
48
class GitTags(object):
48
49