(self)
| 638 | ]) |
| 639 | |
| 640 | def git_branch_name(self): |
| 641 | return self.execute_async([ |
| 642 | self._git_binary, |
| 643 | 'rev-parse', '--abbrev-ref', 'HEAD' |
| 644 | ]) |
| 645 | |
| 646 | def git_branch_status(self): |
| 647 | """Query the current status of the file's repository.""" |
no test coverage detected