Git通过GitPython推送

前端之家收集整理的这篇文章主要介绍了Git通过GitPython推送前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在Python中使用此代码(使用“import git”):

repo = git.Repo("my_repository")
repo.git.add("bla.txt")
repo.git.commit("my commit description")

现在我想推动这个提交.我已经尝试了很多但没有成功. Python命令应该与此Bash命令类似:

git push origin HEAD:refs/for/master
最佳答案
您可以尝试以下方法.它可能会解决您的问题……

repo.git.pull('origin',new_branch)
repo.git.push('origin',new_branch)
原文链接:https://www.f2er.com/python/438691.html

猜你在找的Python相关文章