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