顯示具有 github 標籤的文章。 顯示所有文章
顯示具有 github 標籤的文章。 顯示所有文章

2015年3月5日 星期四

Github 如何設定 SSH 存取 Windows / MacOS / Linux 適用


在本機執行 ssh-keygen -t rsa -C "[email protected]" 產生 key

例如: id_rsa_github


打開 id_rsa_github 文字檔案的內容並複製,

至 Github 帳號中, 選取 SSH keys 選項,  將複製的文字檔案的內容貼上.


完成後在本機執行 ssh -T [email protected]

出現完成訊息表示設定正確
Hi username! You've successfully authenticated, but GitHub does not # provide shell access.

設定本機 git 環境參數
git config --global user.name "Firstname Lastname"

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

2015年3月4日 星期三