配置gitee公钥分为两种:
1、生成/添加SSH公钥(不主动设置生成文件名,默认以“id_rsa”命名,重复设置会被覆盖)
### 生成公钥
$ ssh-keygen -t rsa -C "xxxxx@xxxxx.com"
### 回车三次生成 key
### 查看公钥
$ cat ~/.ssh/id_rsa.pub
### 将秘钥复制并添加到gitee公钥上
### 添加主机到本机SSH可信列表
$ ssh -T git@gitee.com
若返回 Hi XXX! You've successfully authenticated, but Gitee.com does not provide shell access.
内容,则证明添加成功。
2、配置多个SSH-Key(添加“-f”参数主动设置生成文件名)
### 生成公钥
$ ssh-keygen -t rsa -C 'one@xx.com' -f ~/.ssh/one_id_rsa
$ ssh-keygen -t rsa -C 'two@xx.com' -f ~/.ssh/two_id_rsa
在 ~/.ssh
目录下新建一个config
文件,添加如下内容(其中Host和HostName填写git服务器的域名,IdentityFile指定私钥的路径)
# one
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/one_id_rsa
# two
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/two_id_rsa
3、设置完需要修改项目中.git/config
文件url
为ssh方式
请参考https://blog.csdn.net/hjtcn/article/details/78995073