本地配置多个ssh密钥小记
Posted 好人静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地配置多个ssh密钥小记相关的知识,希望对你有一定的参考价值。
之前在https://github.com中的项目发现提交代码的时候提示:
MacBook-Pro:pattern j1$ git push
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: unable to access 'https://github.com/wenjing-bonnie/pattern.git/': The requested URL returned error: 403
这个是由于github将之前的密码凭证从2021年8月13日已经不在使用,必须使用个人访问令牌代替密码。网上有一些怎么生成token的方式,但我在配置的时候没有搞清楚什么有效期,所以还是使用了ssh密钥的方式,因为之前已经在github上配置了密钥,所以直接将该项目下的.git目录下的config文件中的url换成url = git@github.com:wenjing-bonnie/pattern.git,这样在执行gitpush命令之后,但是在提交的时候又提示下面的内容:
MacBook-Pro:pattern j1$ git push -u origin master
Warning: Permanently added the RSA host key for IP address '13.250.177.223' to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
这个跟我在本地有好几个ssh密钥的原因,所以需要配置下对于 github提交的时候对应的密钥文件,下面是配置密钥文件的过程:
- 1.进入到.ssh文件夹
- 2.通过touch config创建config文件
- 3.在config文件中添加如下:
#github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_wenjing
在执行git push命令的时候,已经可以将代码提交到github
以上是关于本地配置多个ssh密钥小记的主要内容,如果未能解决你的问题,请参考以下文章