通过git status
我可以获得有关未发布提交计数的信息:
» git status
# On branch master
# Your branch is ahead of 'origin/master' by 2 commits.
# (use "git push" to publish your local commits)
#
nothing to commit, working directory clean
我想用 GitPython 获得未发布的提交(或计数)。我找到了我的文档repo.git.status()
,但这不是我想要的。