我在github上有两个存储库,使用gitpython尝试将文件从一个存储库推送到另一个远程存储库。我已经设法使用git来做到这一点,但是在gitpython代码中却很挣扎。

git remote add remote_to_push git@bitbucket...
git fetch remote_to_push
git checkout remote_to_push/master
git add file_to_push
git commit -m "pushing file"
git push remote_to_push HEAD:master


我设法创建了远程的回购对象,我认为以下

from git import Repo
repo = Repo('path/to/other/git/repo')
remote = repo.remotes.origin


如果我打电话,我不知道如何添加一些东西然后推送

remote.add("file_to_push")


然后我得到关于create()函数的错误

TypeError: create() takes exactly 4 arguments (2 given)


尝试遵循他们在How to push to remote repo with GitPython中所做的工作

remote.push(refspec='{}:{}'.format(local_branch, remote_branch))


我认为它应该与使用master和master作为远程分支一起使用,因为它们都必须存在,但这给了我错误

stderr: 'error: src refspec master does not match any.'


谢谢

最佳答案

解决了。
首先创建另一个仓库的遥控器

git remote add remote_to_push git@bitbucket...


然后gitpython代码

from git import Repo

repo = Repo('path/to/other/git/repo') #create repo object of the other repository
repo.git.checkout('remote_to_push/master') #checkout to a branch linked to the other repo
file = 'path/to/file' #path to file to push
repo.git.add(file) # same as git add file
repo.git.commit(m = "commit message") # same as git commit -m "commit message"
repo.git.push('remote_to_push', 'HEAD:master') # git push remote_to_push HEAD:master


除了文档之外,如果有人在使用gitpython挣扎,我发现以下内容非常有帮助,因为我觉得这很痛苦

Python Git Module experiences?

http://sandlininc.com/?p=801

Git push via GitPython

How to push to remote repo with GitPython

关于python - 推送到远程存储库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50854924/

10-13 03:06