我正在尝试获取提交所在的分支的名称
我当前的代码是:
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
在存储库中打印每次提交的消息。我不知道如何获取每个提交所在的分支名称