Git 设置SSH key
系统win10IDEIDEA 2018.3.1git 仓库开源中国--码云参考https://www.cnblogs.com/horanly/p/6604104.html1、在git工作目录中运行$ ssh-keygen -t rsa -C "youremail@example.com"2、打开密钥文件 (2文密钥位置)...
·
系统 | win10 |
IDE | IDEA 2018.3.1 |
git 仓库 | 开源中国--码云 |
参考
Git 中 SSH key 生成步骤 - Horan - 博客园
1、在git工作目录中运行
$ ssh-keygen -t rsa -C "youremail@example.com" -f ~/.ssh/gitlab-rsa
-f 是为了给生成的秘钥进行重命名,如果只需要一个ssh key 咱不需要此命令
2、打开密钥文件 (2文密钥位置)
3 、复制密钥粘贴到你远程仓库--设置--SSH公钥
4、运行
git config --global credential.helper store
这样每次 git pull 和git push 就不用每次都输入密码了。
5 本地配置多个ssh key
-
为公司生成一对秘钥ssh key
ssh-keygen -t rsa -C '1313113@139.com' -f ~/.ssh/gitlab-rsa
-
为github生成一对秘钥ssh key
ssh-keygen -t rsa -C '8522855525@qq.com' -f ~/.ssh/gitee-rsa
3.在~/.ssh目录下新建名称为config的文件. 输入一下内容
# gitlab
Host test.gitlab.com
HostName test.gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitlab-rsa
# gitee
Host code.gitee.com
HostName code.gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee-rsa
# 配置文件参数
# Host : Host可以看作是一个你要识别的模式,对识别的模式,进行配置对应的的主机名和ssh文件
# HostName : 要登录主机的主机名
# User : 登录名
# IdentityFile : 指明上面User对应的identityFile路径
更多推荐
已为社区贡献1条内容
所有评论(0)