这个问题耗费了一天多时间才搞定,本来都想放弃了,但是我就是这么执着的人,要是解决不了,心里老想着。 在这里记录下来,以免后续遇到同样的问题再花费时间去研究。
- 问题如何发生
最近因为想在Visual Studio 2022上安装GitHub Co-pilot, 所以需要升级VS2022到更新的版本。然后之前工作正常的GIT FETCH/PULL,现在不工作了,并且都是用的sshkey秘钥认证的方式,还不停的弹出密码输入框:
然后报错如下:
Permission denied, please try again.
Permission denied, please try again.
git@sbwdlab.screenbeam.com: Permission denied (publickey,password).
Error encountered while fetching: Failed to fetch from the remote repository. See the Output window for more details.
Failed to fetch from the remote repository. See the Output window for more details.
2. SSHKEY配置检测
/c/Users/xxx(用户名)/.ssh:config/id_rsa 都还存在。
GitLab: 检测之前添加的SSH KEY也都还存在。
Powershell: git fetch/pull,同一个项目可以正常工作。顺便看了一下git verison: 2.29.2.windows.2
3. 查找相关资料,尝试解决问题,从弹框入手,因为以前是不需要密码输入验证的。
打开git bash, 执行了以下操作:
$ ssh-add
Could not open a connection to your authentication agent.
报错继续执行下面操作:
$ eval $(ssh-agent)
Agent pid 1831
再次执行:
$ ssh-add
Identity added: /c/Users/xxx(username)/.ssh/id_rsa (/c/Users/xxx(username)/.ssh/id_rsa)
测试连接:
$ ssh -T git@XXX(domain name):3301
ssh: Could not resolve hostname XXX(domain name):3301: Name or service not known
提示Server找不到,然后我去掉了端口,再次试:
$ ssh -T git@XXX(domain name) -p 3301
Welcome to GitLab, XXX(username)!
到这里,我是否意识到了什么,修改ssh config文件
修改前:
HostName XXX(domain name):Port-number
修改后(HostName去掉端口):
HostName XXX(domain name)
Port Port-number
心里窃喜,是不是就可以了。VS测试Git fetch/pull,但是依然报错,但是这次没有弹出密码输入框了。
4. 继续查找资料,在一篇文章中看到以下内容:
原因是git版本是最新版(当前版本是2.36),默认不支持rsa。
不回退git旧版本的解决方式是:
修改~/.ssh/config文件,添加一行 PubkeyAcceptedKeyTypes +ssh-rsa
我的SSHKEY是好几年之前生成的,很有可能是旧的加密方式。于是我添加PubkeyAcceptedKeyTypes +ssh-rsa 到/c/Users/xxx(username)/.ssh/config文件。测试从VS Git->fetch/pull都能正常工作。