gpt4 book ai didi

git push使用python

转载 作者:行者123 更新时间:2023-12-03 15:46:09 24 4
gpt4 key购买 nike

我有本地git存储库。我正在使用python使用gitpython库提交本地存储库。我想将提交推送到github。我如何使用gitpython或任何其他库来做到这一点。
我在网上查看,但没有可用的解决方案。谁能帮我这个。
提前致谢

最佳答案

from git import Repo,remote

rw_dir = 'path/to/your/local/repo'
repo = Repo(rw_dir)

'''Enter code to commit the repository here.
After commit run the following code to push the commit to remote repo.
I am pushing to master branch here'''

origin = repo.remote(name='origin')
origin.push()

关于git push使用python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41947096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com