标签: python git gitpython
我正在寻找一种获取gitpython
git fetch --quiet --all
如何在python中执行git fetch?
答案 0 :(得分:10)
fetch method相当于发出git fetch。因此,您可以通过迭代和获取每个遥控器来获取所有遥控器:
fetch
git fetch
repo = git.Repo('name_of_repo') for remote in repo.remotes: remote.fetch()