Git SSH Key生成步驟

2021-07-02 05:30:13 字數 699 閱讀 5437

設定git的user name和email:

$ git config --global user.name "***"
$ git config --global user.email "***[email protected]"

檢視是否已經有了ssh金鑰:cd ~/.ssh

如果沒有金鑰則不會有此資料夾,有則備份刪除

# 生成私鑰&公鑰

$ ssh-keygen -t rsa -c "[email protected]"

# 檢視公鑰內容

$ cat oschina_rsa.pub

# 選中輸出的內容 cmd+c,到 oschina 上新增公鑰 cmd  + v

# 開啟agent程式

$ eval "$(ssh-agent -s)"

#注意,新增的是私鑰,不是pub

$ ssh-add ~/.ssh/oschina_rsa

# 驗證賬號

$ ssh -t [email protected]

welcome to git@osc

開始使用github

1.獲取原始碼:

$ git clone [email protected]:billyanyteen/github-services.git

Git SSH Key 生成步驟

git是分布式的 管理工具,遠端的 管理是基於ssh的,所以要使用遠端的git則需要ssh的配置。github的ssh配置如下 一 設定git的user name和email git config global user.name wanjiehan git config global user.e...

git ssh key生成步驟

步驟 一 開啟git bash視窗 二 設定git的user name和email git config global user.name xuhaiyan git config global user.email haiyan.xu.vip gmail.com 三 生成ssh金鑰過程 1.檢視是否...

Git SSH Key 生成步驟

git是分布式的 管理工具,遠端的 管理是基於ssh的,所以要使用遠端的git則需要ssh的配置。github的ssh配置如下 設定git的user name和email git config global user.name xuhaiyan git config global user.emai...