一台电脑多个git账号,clone方法

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 [email protected]:yourAccount/xxx.git;

现改为:git clone git@binfy:binfy/xxx.git

你可能感兴趣的:(一台电脑多个git账号,clone方法)