42
57
class GitBranchFormat(branch.BranchFormat):
48
66
class GitBranch(branch.Branch):
49
67
"""An adapter to git repositories for bzr Branch objects."""
69
def __init__(self, bzrdir, repository, head, base, lockfiles):
52
71
super(GitBranch, self).__init__()
55
72
self.control_files = lockfiles
60
76
self._format = GitBranchFormat()