如何使用gitpython进行git获取?

时间:2016-10-05 07:42:15

标签: python git gitpython

我正在寻找一种获取gitpython

的等效方法
git fetch --quiet --all

如何在python中执行git fetch?

1 个答案:

答案 0 :(得分:10)

fetch method相当于发出git fetch。因此,您可以通过迭代和获取每个遥控器来获取所有遥控器:

repo = git.Repo('name_of_repo')
for remote in repo.remotes:
    remote.fetch()