无法使用git python克隆或获取所有分支

时间:2017-10-13 11:09:45

标签: python git gitpython

我一直在尝试使用python克隆存储库的所有分支,但它只显示默认分支而不是功能分支。 以下是代码

    import git
    from git import Repo
    repo = git.Repo.clone_from(url,dir_path)
    repo.remotes.origin.fetch() //Approach 1
    for remote in repo.remotes: //Approach 2
       remote.fetch()

我想用所有远程分支实现git fetch --all。请建议

0 个答案:

没有答案