39

我正在尝试访问单个文件的提交历史记录,如下所示:

git log --follow -- <filename>

我必须使用gitpython,所以我现在正在做的是:

import git 
g = git.Git('repo_dir') 
hexshas = g.log('--pretty=%H','--follow','--',filename).split('\n') 

然后我构建提交对象:

repo = git.Repo('repo_dir')
commits = [repo.rev_parse(c) for c in r]

有没有办法以更 gitpython-ic 的方式做到这一点?我都尝试了commit.iter_parents()and commit.iter_items(),但他们都依赖git-rev-list,所以他们没有--follow选择。

4

2 回答 2

17

例如,

有范围时间:

g = git.Git("C:/path/to/your/repo") 
loginfo = g.log('--since=2013-09-01','--author=KIM BASINGER','--pretty=tformat:','--numstat')
print loginfo

输出:

3       2       path/in/your/solutions/some_file.cs

您可以看到添加的行、删除的行以及具有这些更改的文件。

于 2013-11-19T12:57:45.310 回答
7

我建议您改用PyDriller(它在内部使用 GitPython)。更容易使用:

for commit in RepositoryMining("path_to_repo", filepath="here_the_file").traverse_commits():
    # here you have the commit object
    print(commit.hash)
于 2019-02-08T11:07:15.483 回答