Python: git 远程添加 -f origin in Dulwich

Python: git remote add -f origin in Dulwich

我要执行

git remote add -f origin <repo>

与德威。但是,我找不到这方面的东西。

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

谢谢你的想法。

在德威master中,可以使用dulwich.porcelain.remote_add方法:

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

在旧版本(没有 porcelain.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()