Query the commit hash of the compare target. Arguments: compare_against - The reference to compare against if not a hash.
(self, compare_against)
| 682 | ]).then(parse_output) |
| 683 | |
| 684 | def git_compare_commit(self, compare_against): |
| 685 | """Query the commit hash of the compare target. |
| 686 | |
| 687 | Arguments: |
| 688 | compare_against - The reference to compare against if not a hash. |
| 689 | """ |
| 690 | return self.execute_async([ |
| 691 | self._git_binary, 'rev-parse', compare_against]) |
| 692 | |
| 693 | def git_blame(self, row): |
| 694 | """Call git blame to find out who changed a specific line of code""" |
no test coverage detected