git-ssh 配置和使用
阿新 • • 發佈:2021-10-20
git config --global user.name "songkunpeng"
git config --global user.email "[email protected]"
ssh-add -K ~/.ssh/id_rsa
-
設定Git的user name和email:(如果是第一次的話)
$ git config --global user.name "humingx"
$ git config --global user.email "[email protected]
2、生成金鑰
$ ssh-keygen -t rsa -C "[email protected]" (和git的email 保持一致)
3、新增金鑰到ssh-agent
確保 ssh-agent 是可用的。ssh-agent是一種控制用來儲存公鑰身份驗證所使用的私鑰的程式,其實ssh-agent就是一個金鑰管理器,執行ssh-agent以後,使用ssh-add將私鑰交給ssh-agent保管,其他程式需要身份驗證的時候可以將驗證申請交給ssh-agent來完成整個認證過程。
# start the ssh-agent in the background
eval "$(ssh-agent -s)"
Agent pid 59566
新增生成的 SSH key 到 ssh-agent。
$ ssh-add ~/.ssh/id_rsa
4、登陸Github, 新增 ssh 。
把id_rsa.pub
檔案裡的內容複製到這裡
5、測試:
$ ssh -T [email protected]
你將會看到:
The authenticity of host 'github.com (207.97.227.239)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)?
選擇 yes
Hi humingx! You've successfully authenticated, but GitHub does not provide shell access.
如果看到Hi
後面是你的使用者名稱,就說明成功了。
6、修改.git
資料夾下config
中的url
。
修改前
[remote "origin"]
url = https://github.com/humingx/humingx.github.io.git
fetch = +refs/heads/*:refs/remotes/origin/*
修改後
[remote "origin"]
url = [email protected]:humingx/humingx.github.io.git
fetch = +refs/heads/*:refs/remotes/origin/*
7、釋出
[圖片描述](https://segmentfault.com/img/bVlgoT)
``