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

Reduce number of round trips when fetching from Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
    def open_branch(self, ignore_fallbacks=None):
114
114
        """'create' a branch for this dir."""
115
115
        repo = self.open_repository()
116
 
        return branch.LocalGitBranch(self, repo, "HEAD", repo._git.head(),
117
 
            self._lockfiles)
 
116
        return branch.LocalGitBranch(self, repo, "HEAD", self._lockfiles)
118
117
 
119
118
    def open_repository(self, shared=False):
120
119
        """'open' a repository for this dir."""