PyGithub:如何从提交中获取分支名称

时间:2020-06-27 07:24:24

标签: python-3.x github-api pygithub

我正在尝试获取提交所在的分支的名称

我当前的代码是:

from github import Github

access_token = ""
repo_name = ""
gh = Github(access_token)

repo = gh.get_repo(repo_name)
commits = repo.get_commits()
for commit in commits:
    print(commit.commit.message) # gets the message of the commit

在存储库中打印每次提交的消息。我不知道如何获取每个提交所在的分支名称

0 个答案:

没有答案