This commit is contained in:
benjunmun 2024-11-30 20:02:57 +00:00 committed by GitHub
commit d942c31ca7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -86,3 +86,8 @@ class Repository(object):
get_func=branch_name_from_config_file,
create_watcher=self.create_watcher,
)
@staticmethod
def ignore_event(path, name):
# Ignore temporary files created during mercurial commands
return path.endswith('.hg') and name.startswith(b'tmp')