本地 (Local)
1、使用命令生成公钥(pub文件)
1. $ ssh-keygen -t rsa -C "xxxxxxx@email.com" -f "github_id_rsa"
2. $ ssh-keygen -t rsa -C "xxxxxxx@email.com" -f "gitee_id_rsa"
2、创建config文件,并配置
# 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
远程(Remote)
1、gitee配置公钥
2、github配置公钥
验证
文章来源:https://www.toymoban.com/news/detail-655742.html
文章来源地址https://www.toymoban.com/news/detail-655742.html
到了这里,关于【Git】本地搭建Gitee、Github环境的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!