美文网首页
使用git clone --depth 1后再切换其它分支方法

使用git clone --depth 1后再切换其它分支方法

作者: liuxingzi | 来源:发表于2024-04-18 16:38 被阅读0次

    使用 git clone --depth 1, 可以只clone最后一次commit ,也只有一个master分支,如果这时还想切换到其它分支如何操作呢?

    git remote set-branches origin 'remote_branch'
    git fetch --depth 1 origin remote_branch
    git checkout remote_branch
    

    相关文章

      网友评论

          本文标题:使用git clone --depth 1后再切换其它分支方法

          本文链接:https://www.haomeiwen.com/subject/wkhyxjtx.html