2012年3月16日 星期五

add new ssh key/host settings for github access

主要是照 github 的 Set Up Git help, Linux part
(不知道為什麼這個網頁載很久...有時還會 timeout XD)

1. ssh-keygen ...輸入 id_rsa_github 或自己取名以免蓋掉你原本的 ssh key pairs
2.  ssh -i .ssh/id_rsa_github -T git@github.com 確定可以 ssh (no shell, else..0wned XD)
3.  setup github username and api token for github services
    git config --global github.user your-github-username
    git config --global github.token your-github-api-token

4. ~/.ssh/config 加入針對 github 的 ssh key

    Host github.com
        IdentityFile ~/.ssh/id_rsa_github
        SendEnv LANG LC_*
        HashKnownHosts yes
        GSSAPIAuthentication yes
        GSSAPIDelegateCredentials no

接下來再照 github 的 create a repo....網頁就可以開始你自己的 github open sharing
之旅了,只是要記得免錢的服務都是要公開的...

沒有留言:

張貼留言