gitPython: git remote add -f origin in Dulwich



我想执行

git remote add -f origin <repo>

和德威。然而,我找不到这个方向的东西。

知道别人在gitpython中的解决方案或替代方案吗?

谢谢你的想法。

在Dulwichmaster中,您可以使用Dulwich。瓷器.remote_ad方法:

from dulwich import porcelain
porcelain.remote_add('origin', 'http://github.com/git/git')

在较旧的版本(没有瓷.remote_add)中,您可以使用以下内容:

from dulwich.repo import Repo
c = Repo('.').get_config()
c.set(('remote "origin"', ), "url", "http://github.com/git/git") 
c.write_to_path()

相关内容

  • 没有找到相关文章

最新更新