def _get_relevant_commits(repo, commit_shas, branch):
"""
Gets all commits on the repo with the given shas
:param Repo repo:
:param list[unicode] commit_shas:
:param unicode branch:
:return: list[Commit]
"""
remaining_shas = set(commit_shas)
commits = list()
for commit in repo.iter_commits(branch):
if commit.hexsha in remaining_shas:
commits.append(commit)
remaining_shas.remove(commit.hexsha)
return commits
评论列表
文章目录