(self, name: str, value: str = None)
| 52 | self.execute(cmd) |
| 53 | |
| 54 | def config(self, name: str, value: str = None) -> str: |
| 55 | cmd = ["git", "config", name] |
| 56 | if value: |
| 57 | cmd.append(value) |
| 58 | return self.execute(cmd) |
| 59 | |
| 60 | def changed(self) -> List[Path]: |
| 61 | cmd = ["git", "show", "--name-status"] |