Skip to content

Instantly share code, notes, and snippets.

View felipe-rodolfo's full-sized avatar
🎯
Focusing

Felipe Rodolfo felipe-rodolfo

🎯
Focusing
  • Brasil
View GitHub Profile
# Criar chaves ssh
ssh-keygen -t rsa -f "./.ssh/nome-chave" -C 'exemplo@email.com'
# Sempre que fechar o terminal ou reiniciar o PC
eval "$(ssh-agent -s)"
ssh-add ./.ssh/nome-chave
# Iniciando o git
git init
git config --global user.name "nome"