Created
November 25, 2015 09:28
-
-
Save vallettea/5c573dfe2d78967f1103 to your computer and use it in GitHub Desktop.
setup git for github
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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