1.查看用户~/.ssh下是否存在 config文件,如不存在使用命令 touch config创建,然后配置config
# default
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
# two
Host binfy
HostName github.com
User git
IdentityFile ~/.ssh/githubrsakey
2.clone项目到本地
原先操作:git clone git@github.com:yourAccount/xxx.git;
现改为:git clone git@binfy:binfy/xxx.git