git 關聯多個git賬號

2021-10-22 19:30:42 字數 882 閱讀 6468

參考部落格,在此基礎上,筆者還加了一些自己的備註

ssh-keygen -t rsa -f ~/.ssh/id_rsa_gitlab_ucd -c "yourmail@***.com"
複製pub檔案內容到gitlab的ssh上

host github.com 

hostname github.com

preferredauthentications publickey

identityfile ~\.ssh\id_rsa

​host csgitlab.ucd.ie

hostname csgitlab.ucd.ie

preferredauthentications publickey

identityfile ~\.ssh\id_rsa_gitlab_ucd

ssh -t [email protected]

ssh -t [email protected]

# hi ieit! you've successfully authenticated, but github does not provide shell access.

# 出現上邊這句,表示鏈結成功

# 取消全域性 使用者名稱/郵箱 配置

git config --global --unset user.name

git config --global --unset user.email

# 單獨設定每個repo 使用者名稱/郵箱

git config user.email 「***[email protected]

git config user.name 「***x」

windows下git關聯多個賬號

當我們在公司辦公的環境下,會遇到既想用公司的賬號也想用自己的賬號時產生的問題 複製 1.首先現在電腦端安裝好git 已經安裝的跳過 2.開啟git bash,生成 ssh key1.cd c users 使用者名稱 ssh 2.ssh keygen t rsa c your email yourem...

本地git配置多個git賬號

ssh keygen t rsa c 你的郵箱 回車,輸入檔名,輸入密碼,再次輸入密碼 有多個賬號的話重複以上步驟,金鑰生成完後在.ssh目錄下建立config檔案 內容如下 host github.com hostname github.com user user1 preferredauthen...

本地管理多個git賬號

前言 本來電腦本地只存在乙個git賬號,用於提交專案 近期重新搭建了部落格,站點託管在github上。在gitee上又新建了乙個倉庫,用來備份部落格。首次提交到github或者gitee上,會提示輸入密碼,再次提交,可能不再提示密碼,當你做push操作時,會提示你沒有許可權,因為git無法區分到底是...