Skip to content

Instantly share code, notes, and snippets.

@robsonfaxas
Last active August 30, 2018 12:26
Show Gist options
  • Save robsonfaxas/f39a4f69fe36759bdbac5387710e9af5 to your computer and use it in GitHub Desktop.
Save robsonfaxas/f39a4f69fe36759bdbac5387710e9af5 to your computer and use it in GitHub Desktop.
#git - 1 - Settings iniciais - user, email e editor
-- define nome do usuário
$ git config --global user.name "Robson Faxas"
-- define email do usuário
$ git config --global user.email "[email protected]"
-- Define o editor como sublime
$ git config --global core.editor subl
-- Mostra o nome cadastrado
$ git config user.name
-- traz todas informações setadas
$ git config --list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment