Last active
April 28, 2021 15:16
-
-
Save GabrielCzar/68008e4bcc8733e28ab22f9ba0646984 to your computer and use it in GitHub Desktop.
Git Config SSH Keygen
This file contains 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
#!/bin/bash | |
# Crie a chave SSH na sua maquina | |
# Apenas confirme todas as entradas, mas se quiser mais seguranca coloque uma senha na hora que for solicitado | |
# No caso do SO Windows usa o ssh-keygen.exe | |
ssh-keygen -C "[email protected]" | |
# Logue na conta do github | |
# Entre no seguinte link | |
# https://github.com/settings/keys | |
# Copie tudo que for mostrado com o comando CAT para o SSH Keys do github | |
cat ~/.ssh/id_rsa.pub | |
# Pronto SSH configurado | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment