美文网首页
git clone --depth=1引起的问题

git clone --depth=1引起的问题

作者: 阿群1986 | 来源:发表于2019-02-13 09:35 被阅读5次
    git clone --depth=1 
    
    
    git fetch --unshallow
    
    

    避免git push推送上传时出现(shallow update not allowed)错误
    git push liuqun2
    The authenticity of host 'github.com (52.74.223.119)' can't be established.
    RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'github.com,52.74.223.119' (RSA) to the list of known hosts.
    对象计数中: 67024, 完成.
    Delta compression using up to 4 threads.
    压缩对象中: 100% (59785/59785), 完成.
    写入对象中: 100% (67024/67024), 178.69 MiB | 962.00 KiB/s, 完成.
    Total 67024 (delta 6285), reused 67024 (delta 6285)
    remote: Resolving deltas: 100% (6285/6285), done.
    To github.com:liuqun/linux-kernel-wireguard.git
    ! [remote rejected] wireguard -> wireguard (shallow update not allowed)
    error: 无法推送一些引用到 'git@github.com:liuqun/linux-kernel-wireguard.git'

    相关文章

      网友评论

          本文标题:git clone --depth=1引起的问题

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