suchen

Heim  >  Fragen und Antworten  >  Hauptteil

git如何添加多个公钥呢?我在github和osc托管项目

ssh-keygen -t rsa -C "your_email@example.com"

这个方法就直接覆盖了~/.ssh/id_rsa.pub下面的公钥了,
我想添加多个公钥,怎么弄呢/

世界只因有你世界只因有你2792 Tage vor739

Antworte allen(4)Ich werde antworten

  • 巴扎黑

    巴扎黑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,并不一定要分开

    Antwort
    0
  • 仅有的幸福

    仅有的幸福2017-05-02 09:42:46

    话说一台机器的公钥应该是唯一的吧

    Antwort
    0
  • 怪我咯

    怪我咯2017-05-02 09:42:46

    题主可参考:
    http://stackoverflow.com/ques...

    Antwort
    0
  • 仅有的幸福

    仅有的幸福2017-05-02 09:42:46

    1. 可共用一个公钥

    2. 不同的密钥命名就不会覆盖了

    Antwort
    0
  • StornierenAntwort