(self)
| 680 | return self.gl_repo.current_branch.branch_name == self.branch_name |
| 681 | |
| 682 | def _update(self): |
| 683 | self.git_branch = self.gl_repo.git_repo.lookup_branch( |
| 684 | self.branch_name, pygit2.GIT_BRANCH_LOCAL) |
| 685 | |
| 686 | def history(self, reverse=False): |
| 687 | return walker(self.gl_repo.git_repo, self.target, reverse=reverse) |
no test coverage detected