Gitee、Github同时配置ssh key
程序员文章站
2022-04-30 11:12:46
...
- 首先在根目录下创建.ssh文件
- 进入.ssh,生成两个**
ssh-****** -t rsa -C "[email protected]" -f "github_id_rsa"
ssh-****** -t rsa -C "[email protected]" -f "gitee_id_rsa"
- 在.ssh目录下创建文件并添加一下内容
# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id_rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id_rsa
4.分别给Gitee和Github添加对应的**
5测试
ssh -T [email protected]
ssh -T [email protected]
推荐阅读
-
iOS开发Mac配置(CocoaPods、SourceTree、ssh key)
-
详解SSH如何配置key免密码登录
-
Ubuntu 给GitHub和Heroku配置ssh
-
ssh配置-使用本地多个私钥连接多个账户的github rsa认证
-
Git配置多个SSH-Key
-
同个电脑多个ssh key的配置使用(转)
-
【转】Windows下Git多账号配置,同一电脑多个ssh-key的管理
-
【转】Windows下Git多账号配置,同一电脑多个ssh-key的管理
-
shell脚本一键同时推送代码至github和gitee的解决办法
-
GitHub设置使用SSH Key,用TortoiseGit进行Clone仓库