How do I access my SSH public key?

前端 未结 19 945
星月不相逢
星月不相逢 2021-01-29 17:04

I\'ve just generated my RSA key pair, and I wanted to add that key to GitHub.

I tried cd id_rsa.pub and id_rsa.pub, but no luck. How can I acce

19条回答
  •  礼貌的吻别
    2021-01-29 17:35

    The following command will save the SSH key on the clipboard. You only need to paste at the desired location.

    cat ~/.ssh/id_rsa.pub | pbcopy
    

提交回复
热议问题