(self, patch_file, revert=False)
| 525 | |
| 526 | # Takes a file containing the patch to apply as first argument. |
| 527 | def ApplyPatch(self, patch_file, revert=False): |
| 528 | try: |
| 529 | self.GitApplyPatch(patch_file, revert) |
| 530 | except GitFailedException: |
| 531 | self.WaitForResolvingConflicts(patch_file) |
| 532 | |
| 533 | def GetVersionTag(self, revision): |
| 534 | tags = self.Git(f"tag --points-at {revision}").strip().split('\n') |
no test coverage detected