我需要使用 python 指定文件的作者姓名和上次提交时间。目前,我正在尝试使用dulwich。
有很多 api 可以检索特定 SHA 的对象,例如:
repo = Repo("myrepo")
head = repo.head()
object = repo.get_object(head)
author = object.author
time = object.commit_time
但是,我怎么知道特定文件的最近提交?有没有办法像这样检索它:
repo = Repo("myrepo")
commit = repo.get_commit('a.txt')
author = commit.author
time = commit.commit_time
或者
repo = Repo("myrepo")
sha = repo.get_sha_for('a.txt')
object = repo.get_object(sha)
author = object.author
time = object.commit_time
谢谢你。