(self)
| 601 | return self.repo.is_dirty(path=path) |
| 602 | |
| 603 | def get_head_commit(self): |
| 604 | try: |
| 605 | return self.repo.head.commit |
| 606 | except (ValueError,) + ANY_GIT_ERROR: |
| 607 | return None |
| 608 | |
| 609 | def get_head_commit_sha(self, short=False): |
| 610 | commit = self.get_head_commit() |
no outgoing calls
no test coverage detected