(self)
| 673 | self.repo.scm_context.ignore(self.fspath) |
| 674 | |
| 675 | def ignore_remove(self) -> None: |
| 676 | if not self.use_scm_ignore: |
| 677 | return |
| 678 | |
| 679 | assert self.repo |
| 680 | self.repo.scm_context.ignore_remove(self.fspath) |
| 681 | |
| 682 | def save(self) -> None: |
| 683 | if self.use_cache and not self.is_in_repo: |
no outgoing calls