在Git 实际使用中往往不仅要用到github或者公司的gitlab等等Git平台,然而Git本地生成SSH只有一个。这里教大家配置下多个Git账户使用的方法
1.生成账号
这里生成oschina的git账号
ssh-keygen -t rsa -C "test@mango.im" -f ~/.ssh/gitos-rsa
接着生成
ssh-keygen -t rsa -C "test@mango.im" -f ~/.ssh/github-rsa
2.建配置文件
在 ~/.ssh 目录下新建一个config文件
touch config
添加内容:
# oschina
Host git.oschina.net
HostName git.oschina.net
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitos-rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github-rsa
这时oschina的git和github都可以使用了
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。