1. 程式人生 > >Git下SSHKey生成過程

Git下SSHKey生成過程

one log pro .net .org wiki settings server -s

一 、設置郵箱
設置Git的user name和email:
$ git config --global user.name "lili"
$ git config --global user.email "[email protected]"
設置完後查看用戶名和郵箱
git config --global user.name
git config --global user.email

二、生成SSH密鑰過程:
1 查看本地有沒有 cat ~/.ssh/id_rsa.pub
2 若無,生成新的 ssh-keygen -t rsa -C "[email protected]"

按下三個回車,得到了兩個文件:id_rsa和id_rsa.pub
3 復制id_rsa.pub裏面的key,cat ~/.ssh/id_rsa.pub
在gitlab裏面把sshkey粘貼到Settings裏面的SSH Keys
4 測試是否聯通 ssh [email protected]

三、拉取項目開始開發
1 git clone [email protected]:XXX/yourproject.git
2 後面省略之....

參考博客
http://blog.csdn.net/hustpzb/article/details/8230454/
https://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key

https://en.wikipedia.org/wiki/Ssh-keygen

Git下SSHKey生成過程