如何使用 gitpython git 获取数据?
How to git fetch using gitpython?
我正在寻找一种等效的方法来获取 gitpython
git fetch --quiet --all
如何在 python 中执行 git 提取?
fetch
method相当于发出git fetch
。因此,您可以通过单独迭代和获取每个遥控器来获取所有遥控器:
repo = git.Repo('name_of_repo')
for remote in repo.remotes:
remote.fetch()
我正在寻找一种等效的方法来获取 gitpython
git fetch --quiet --all
如何在 python 中执行 git 提取?
fetch
method相当于发出git fetch
。因此,您可以通过单独迭代和获取每个遥控器来获取所有遥控器:
repo = git.Repo('name_of_repo')
for remote in repo.remotes:
remote.fetch()