多個github帳號的SSH key切換

來源:互聯網
上載者:User

多個github帳號的SSH key切換 ssh-keygen -t rsa -C 'second@mail.com'預設SSH只會讀取id_rsa,所以為了讓SSH識別新的私密金鑰,需要將其添加到SSH agentssh-add ~/.ssh/id_rsa_second該命令如果報錯:Could not open a connection to your authentication agent.無法串連到ssh agent,可執行ssh-agent bash命令後再執行ssh-add命令。完成以上步驟後在~/.ssh目錄建立config檔案,該檔案用於配置私密金鑰對應的伺服器。內容如下: # Default github user(first@mail.com)Host github.com HostName github.com User git IdentityFile C:/Users/username/.ssh/id_rsa# second user(second@mail.com)Host github-second HostName github.com User git IdentityFile C:/Users/username/.ssh/id_rsa_secondHost隨意即可,方便自己記憶,後續在添加remote是還需要用到。配置完成後,在串連非預設帳號的github倉庫時,遠程庫的地址要對應地做一些修改,比如現在添加second帳號下的一個倉庫test,則需要這樣添加:git remote add test git@github-second:second/test.git #並非原來的git@github.com:second/test.git這樣每次串連都會使用id_rsa_second與伺服器進行串連。至此,大功告成!注意:1:github根據設定檔的user.email來擷取github帳號顯示author資訊,所以對於多帳號使用者一定要記得將user.email改為相應的email(second@mail.com)。           2:還有就是上面的路徑最好寫絕對路徑,這樣不容易出錯(剛開始我出錯就主要是因為路徑的問題。。。。。。。。。。) 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.