生成SSH
- 創(chuàng)建SSH脸候,執(zhí)行
ssh-keygen -t rsa -C "youremail@example.com"
,會在.ssh目錄下生成id_rsa
讯屈、id_rsa.pub
兩個私鑰和公鑰蛋哭。
- 有個路徑需要填寫 直接復(fù)制箭頭部分就可以
- 通過
cat ~/.ssh/id_rsa.pub
查看公鑰,并將公鑰整體復(fù)制涮母,配置到GitHub等后臺谆趾。
從頭到尾都復(fù)制,放到key中 然后自動會生成 RW 鑰匙那個樣子
配置本地SSH
- 執(zhí)行
ssh-add ~/.ssh/id_rsa
將sshkey添加到sourceTree(會輸入密碼) - 執(zhí)行
ssh-add -K ~/.ssh/id_rsa
將sshkey添加到鑰匙串 - cd 到 .ssh目錄下, 用touch config命令創(chuàng)建config文件
- 執(zhí)行open config, 打開config文件躁愿,輸入以下內(nèi)容并保存
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/id_rsa