Last active
August 29, 2015 14:06
-
-
Save joasgarcia/9fa7abfe711a0bb55fb4 to your computer and use it in GitHub Desktop.
Gerar chave ssh (https://help.github.com/articles/generating-ssh-keys)
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
ssh-keygen -t rsa -C "[email protected]" | |
eval `ssh-agent -s` //Precisa ser esse tipo de aspas | |
ssh-add ~/.ssh/id_rsa | |
ssh -T [email protected] //Teste |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment