git使用时遇到的问题汇总

2021-09-15  本文已影响0人  studentliubo

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 // 中止合并

未完待续。。。

上一篇下一篇

猜你喜欢

热点阅读