https://help.github.com/articles/generating-ssh-keys
ssh-keygen -t rsa -C "your_email@example.com"
eval `ssh-agent -s`
ssh-add ~/.ssh/id_rsa
# for mac
pbcopy < ~/.ssh/id_rsa.pub
# check connect
ssh -T git@github.com
https://help.github.com/articles/generating-ssh-keys
ssh-keygen -t rsa -C "your_email@example.com"
eval `ssh-agent -s`
ssh-add ~/.ssh/id_rsa
# for mac
pbcopy < ~/.ssh/id_rsa.pub
# check connect
ssh -T git@github.com