Heim > Fragen und Antworten > Hauptteil
ssh-keygen -t rsa -C "your_email@example.com"
这个方法就直接覆盖了~/.ssh/id_rsa.pub下面的公钥了,
我想添加多个公钥,怎么弄呢/
巴扎黑2017-05-02 09:42:46
ssh-keygen -f ~/.ssh/osckeyfile
然后为添加~/.ssh/config 文件,配置git域名,和你上面的ssh私钥路径
Host git.oschina.net # 我没用过,你换osc的域名
IdentityFile ~/.ssh/osckeyfile
PS:多个网站可以使用同一个key,并不一定要分开