(self)
| 757 | 'in_conflict']) |
| 758 | |
| 759 | def _au_files(self): |
| 760 | for f_out in stdout( |
| 761 | git('ls-files', '-v', _cwd=self.gl_repo.root)).splitlines(): |
| 762 | if f_out[0] == 'h': |
| 763 | yield f_out[2:].strip() |
| 764 | |
| 765 | def status(self): |
| 766 | """Return a generator of file statuses (see FileStatus). |