建立多個Git帳號

2021-07-04 02:51:35 字數 833 閱讀 7078

第一步:進入ssh資料夾

$:cd ~/.ssh

第二步:獲取git的金鑰

$:ssh-keygen -t rsa -b 4096 -c "[email protected]" -f id_rsa_github

id_rsa_github:是金鑰檔案

第三步:複製金鑰

$:clip < ~/.ssh/id_rsa_github.pub

第四步:需要在.ssh資料夾下面建立config檔案

host github.com

hostname github.com

user user1

preferredauthentications publickey

identityfile ~/.ssh/

id_ras_github  ## 這個是建立的金鑰檔案

如果有多個的話,可以複製多份

host github.com

hostname github.com

user user1

preferredauthentications publickey

identityfile ~/.ssh/

id_ras_github1 

host github.com

hostname github.com

user user1

preferredauthentications publickey

identityfile ~/.ssh/

id_ras_github2 

第五步:

git clone git@gitlab.***.com:second/test.git

oracle建立帳號SQL

建立使用者 create user username identified by password 建立了使用者 username,密碼為 password 對使用者授權 grant connect,resource to username 對使用者username授予了連線資料庫和訪問資源的許可權...

多個github帳號的SSH key切換

1.首先cd到 ssh 使用 ssh keygen t rsa c second mail.com 生成新的ssh key id rsa second ssh keygen t rsa c second mail.com 2.預設ssh只會讀取id rsa,所以為了讓ssh識別新的私鑰,需要將其新增...

多個github帳號的SSH key切換

github使用ssh與客戶端連線。如果是單使用者 first 生成金鑰對後,將公鑰儲存至github,每次連線時ssh客戶端傳送本地私鑰 預設 ssh id rsa 到服務端驗證。單使用者情況下,連線的伺服器上儲存的公鑰和傳送的私鑰自然是配對的。但是如果是多使用者 first,second 我們在...