操作系统:Mac OS X;
git相关配置在本文不做详细赘述。
- 设置user.name,user.email
git config user.name "username"//替换成github或者其他git repository用户名
git config user.email "email"//替换成github或者其他git repository绑定邮箱
- 生成ssh key
ssh-keygen -t rsa -C "email"//替换成github或者其他git repository绑定邮箱
cat ~/.ssh/id_rsa.pub 拿到keygen,将keygen贴到git repository ssh key里
到这里前面配置搞定,那么如何才能实现多个git账户在同一终端上同时存在呢,看下面的配置
- 修改.ssh目录下config文件
每个账号单独配置一个Host,每个Host取一个别名,每个Host配置HostName和IdentityFile两个属性
Hostname:git repository真实的域名
IdentityFile:id_rsa地址
config配置问价如下
#Default account Host github.com Hostname github.com User userName1 IdentityFile ~/.ssh/id_rsa #New account Host github.com Hostname github.com User userName2 IdentityFile ~/.ssh/id_rsa2