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