latex-packages/build_scripts/git_hook/recent.py

31 lines
1003 B
Python
Raw Normal View History

2021-10-22 09:57:35 +02:00
import git
from .git_version import get_latest_commit
2021-10-22 09:57:35 +02:00
from typing import Union, Optional, List
2021-10-22 09:57:35 +02:00
def is_recent(file, repo, compare: Optional[Union[git.Commit, List[git.Commit]]] = None) -> Optional[bool]:
modified_files = [item.a_path for item in repo.index.diff(None)]
if file in modified_files:
return True
2021-10-22 09:57:35 +02:00
newly_committed_files = []
if type(compare) == git.Commit:
newly_committed_files = [item.a_path for item in repo.index.diff(compare)]
elif type(compare) == list:
for commit in compare:
for item in repo.index.diff(commit):
newly_committed_files.append(item.a_path)
elif type is None:
for parent in get_latest_commit(repo).parents:
for item in repo.index.diff(parent):
newly_committed_files.append(item.a_path)
else:
print("Invalid argument type for compare")
return None
2021-10-22 09:57:35 +02:00
if file in newly_committed_files:
return True
else:
return False