Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save newbrunomartins/28ed8007062e898cb47f11f2cb72c0d9 to your computer and use it in GitHub Desktop.
Save newbrunomartins/28ed8007062e898cb47f11f2cb72c0d9 to your computer and use it in GitHub Desktop.
Configuração rápida do git
git config --global user.name "Bruno Martins" && git config --global user.email "brunocorream@gmail.com" && ssh-keygen -t rsa -b 4096 -C "brunocorream@gmail.com" && eval "$(ssh-agent -s)" && ssh-add ~/.ssh/id_rsa.pub && cat ~/.ssh/id_rsa.pub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment