美文网首页
git使用时遇到的问题汇总

git使用时遇到的问题汇总

作者: studentliubo | 来源:发表于2021-09-15 20:08 被阅读0次

    1、ssh -T 时 Permission denied, please try again.

    生成ssh公钥的时候记得 ssh-add ~/.ssh/id_rsa

    2、windows环境下git clone时Unable to negotiate,....no matching host key type found

    在.ssh\文件夹下创建文件:config
    然后将下面内容复制到config中,保存即可。

    Host *
    HostkeyAlgorithms +ssh-rsa
    PubkeyAcceptedKeyTypes +ssh-rsa
    

    3、VCS_INFO_get_data_git:284: no such file or directory: .git/MERGE_MSG

    git merge --abort // 中止合并

    未完待续。。。

    相关文章

      网友评论

          本文标题:git使用时遇到的问题汇总

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