溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Ubuntu git安裝和使用

發(fā)布時間:2020-07-20 06:59:49 來源:網(wǎng)絡(luò) 閱讀:729 作者:tfjay914 欄目:開發(fā)技術(shù)
  1. 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

Ubuntu git安裝和使用


7.Settings->SSH and GPG keys->New SSH Keys

這里有g(shù)ithub.com為列子:https://github.com/settings/profile

標題填郵箱名,Key填is_rsa.pub的內(nèi)容。

Ubuntu git安裝和使用


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.


向AI問一下細節(jié)

免責(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)容。

AI