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