使用git 拉取代码时提示git@118.190.207.18's password:
时间: 2023-09-04 20:11:30 浏览: 110
IDEA中使用Git拉取代码时报 Git pull failed原因及解决方法
5星 · 资源好评率100%
如果在使用git拉取代码时提示git@118.190.207.18's password,那么可能是因为你使用的是SSH协议,需要你输入SSH key的密码。你可以按照以下步骤进行操作:
1. 打开终端,输入命令ssh-keygen生成密钥对;
2. 将公钥放到服务器上,可以使用命令ssh-copy-id将公钥复制到服务器上,例如ssh-copy-id user@host;
3. 确认本地SSH代理正在运行,可以输入命令eval "$(ssh-agent -s)"和ssh-add -l;
4. 在本地的~/.ssh/config文件中添加如下内容:
```
Host github.com
HostName 118.190.207.18
User git
IdentityFile ~/.ssh/id_rsa
```
其中,HostName为服务器地址,User为服务器用户名,IdentityFile为本地私钥的路径;
5. 最后,尝试重新拉取代码,如果还有问题,可以尝试使用HTTP协议进行拉取,或者联系服务器管理员。
阅读全文