How can I review my SSH key for github?

前端 未结 4 1017
臣服心动
臣服心动 2021-02-07 12:44

I recently got an e-mail from Github saying that I should review my SSH key:

Please review your keys and ensure you recognize them. If you have any doub

4条回答
  •  失恋的感觉
    2021-02-07 13:39

    If you have a bunch of keys to compare with the GitHub fingerprint this line comes in handy:

    cd ~/.ssh; for k in *.pub; do ssh-keygen -E md5 -lf $k; done
    

提交回复
热议问题