do the commit before applying edits

This commit is contained in:
Paul Gauthier 2023-08-17 10:40:01 -07:00
parent 2455676a44
commit d981de5f5f
3 changed files with 61 additions and 42 deletions

View file

@ -190,5 +190,5 @@ class GitRepo:
return res
def is_dirty(self):
return self.repo.is_dirty()
def is_dirty(self, path=None):
return self.repo.is_dirty(path=path)