(self, short=False)
| 607 | return None |
| 608 | |
| 609 | def get_head_commit_sha(self, short=False): |
| 610 | commit = self.get_head_commit() |
| 611 | if not commit: |
| 612 | return |
| 613 | if short: |
| 614 | return commit.hexsha[:7] |
| 615 | return commit.hexsha |
| 616 | |
| 617 | def get_head_commit_message(self, default=None): |
| 618 | commit = self.get_head_commit() |
no test coverage detected