Skip to content

Instantly share code, notes, and snippets.

@vallettea
Created November 25, 2015 09:28
Show Gist options
  • Save vallettea/5c573dfe2d78967f1103 to your computer and use it in GitHub Desktop.
Save vallettea/5c573dfe2d78967f1103 to your computer and use it in GitHub Desktop.
setup git for github
git config --global user.name "vallettea"
git config --global user.email "[email protected]"
ssh-keygen -t rsa -b 4096 -C "[email protected]"
eval ssh-agent $SHELL
ssh-add ~/.ssh/id_rsa
# cat ~/.ssh/id_rsa.pub and add it to github
ssh -T [email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment