diff options
author | Marcel Ribeiro-Dantas <marcel.ribeiro-dantas@curie.fr> | 2022-07-17 16:57:22 +0200 |
---|---|---|
committer | Marcel Ribeiro-Dantas <mribeirodantas@hey.com> | 2022-07-17 16:57:22 +0200 |
commit | 98aad0feb383c3149839637150fd26ab98a3b978 (patch) | |
tree | 67d1132167b9a11de01f632815796066b9785343 /pt-br/git-pt.html.markdown | |
parent | 250980742c5f03f58a089390ab9e524d95539fbd (diff) |
Add examples to git-config in pt-br
Diffstat (limited to 'pt-br/git-pt.html.markdown')
-rw-r--r-- | pt-br/git-pt.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pt-br/git-pt.html.markdown b/pt-br/git-pt.html.markdown index 235b3fdd..2cc1c337 100644 --- a/pt-br/git-pt.html.markdown +++ b/pt-br/git-pt.html.markdown @@ -133,12 +133,12 @@ Permite configurar o git, seja com respeito a definições deste repositório, do sistema ou configurações globais para todos os repositórios. ```bash -# Imprime e define algumas variáveis de configuração básicas (global) -$ git config --global user.email -$ git config --global user.name - +# Define e imprime algumas variáveis de configuração básicas (global) $ git config --global user.email "MyEmail@Zoho.com" $ git config --global user.name "My Name" + +$ git config --global user.email +$ git config --global user.name ``` [Aprenda mais sobre git config. (EN)](http://git-scm.com/docs/git-config) |