Last active
August 30, 2018 12:26
-
-
Save robsonfaxas/f39a4f69fe36759bdbac5387710e9af5 to your computer and use it in GitHub Desktop.
#git - 1 - Settings iniciais - user, email e editor
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
-- 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