您好,登錄后才能下訂單哦!
git --version
如果命令找不到就要安裝。
2.sudo apt-get install git
安裝git
3.git config --global user.name "tongfan"
配置user.name
4.git config --global user.eamil "tongfan@followme.com"
配置你的Git上注冊的郵箱地址這個一定要確定,ssh通訊時要用到。
5.ssh-keygen -C 'tongfan@followme.com' -t rsa
一直回車直到完成。生成RSA公鑰:id_rsa.pub和私鑰:id_rsa
6.把id_rsa.pub公鑰的內(nèi)存copy
7.Settings->SSH and GPG keys->New SSH Keys
這里有g(shù)ithub.com為列子:https://github.com/settings/profile
標題填郵箱名,Key填is_rsa.pub的內(nèi)容。
8.測試設(shè)置是否成功。
root@ubuntu:~/code# git clone git@github.com:micro/examples.git
Cloning into 'examples'...
remote: Counting objects: 301, done.
remote: Total 301 (delta 0), reused 0 (delta 0), pack-reused 301
Receiving objects: 100% (301/301), 85.78 KiB | 28.00 KiB/s, done.
Resolving deltas: 100% (80/80), done.
Checking connectivity... done.
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。