生成密鑰
ssh-keygen -t -C "xxx@xxx.com"
# 多個(gè)賬戶生成多次
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/admin/.ssh/id_rsa): 這個(gè)地方路徑名稱需要改,如/c/Users/admin/.ssh/id_rsa_gitlab
# 主要是避免文件名重復(fù)產(chǎn)生覆蓋
在~/.ssh/目錄下創(chuàng)建config文件
內(nèi)容編輯如下:
# 網(wǎng)站的別名驻民,可以隨便填寫
Host github.com
# 托管網(wǎng)站的域名,需要真實(shí)的git網(wǎng)站域名
HostName github.com
# 配置使用用戶名
User V7hinc
# 這里是id_rsa的目錄位置
IdentityFile ~/.ssh/id_rsa_github
# 另一個(gè)git網(wǎng)站
Host gitlab.com
HostName gitlab.com
User xxx
IdentityFile ~/.ssh/id_rsa_gitlab
# 如果ssh端口不是22文虏,可以加上這條指定ssh端口
Port 2222