我想从GitPython的repo(项目)中获取目录(称为模块)的提交数量。
> print("before",modulePath)
> repo = Repo(modulePath)
> print(len(list(repo.iter_commits())))
当我尝试打印目录提交数量时,它说该存储库不是有效的git Repo。
- 在/ home / user / project / module之前
- git.exc.InvalidGitRepositoryError:/ home / user / project / 模块
任何帮助或想法都将受到欢迎:) 谢谢
答案 0 :(得分:0)
这是我的一个旧项目中的示例代码(未打开,因此没有存储库链接):
def parse_commit_log(repo, *params):
commit = {}
try:
log = repo.git.log(*params).split("\n")
except git.GitCommandError:
return
for line in log:
if line.startswith(" "):
if not 'message' in commit:
commit['message'] = ""
else:
commit['message'] += "\n"
commit['message'] += line[4:]
elif line:
if 'message' in commit:
yield commit
commit = {}
else:
field, value = line.split(None, 1)
commit[field.strip(":")] = value
if commit:
yield commit
说明:
该函数期望Repo
的实例以及将传递给git log
命令的相同参数。因此,您的情况下的用法可能如下所示:
repo = git.Repo('project_path')
commits = list(parse_commit_log(repo, 'module_dir'))
内部,repo.git.log
正在调用git log
命令。其输出看起来像这样:
commit <commit1 sha>
Author: User <username@email.tld>
Date: Sun Apr 7 17:08:31 2019 -0400
Commit1 message
commit <commit2 sha>
Author: User2 <username2@email.tld>
Date: Sun Apr 7 17:08:31 2019 -0400
Commit2 message
parse_commit_log
解析此输出并产生提交消息。您需要再添加几行来获取提交信息,作者和日期,但这应该不太困难。