(self)
| 2403 | self.commands.cmd_diff() |
| 2404 | |
| 2405 | def show_undo_hint(self): |
| 2406 | if not self.commit_before_message: |
| 2407 | return |
| 2408 | if self.commit_before_message[-1] != self.repo.get_head_commit_sha(): |
| 2409 | self.io.tool_output("You can use /undo to undo and discard each aider commit.") |
| 2410 | |
| 2411 | def dirty_commit(self): |
| 2412 | if not self.need_commit_before_edits: |
no test coverage detected