diff options
| author | Marcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com> | 2022-07-17 16:58:21 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-17 16:58:21 +0200 | 
| commit | 61892832db919be76182d388aeb5037acfded085 (patch) | |
| tree | 23fd9f70613c4c4e33cddc2ea7949dc4f8c8e27c | |
| parent | 627387d8d6ab55e78ca5fc9bc034aec5c241b964 (diff) | |
| parent | 98aad0feb383c3149839637150fd26ab98a3b978 (diff) | |
Merge pull request #4454 from mribeirodantas/improve-git-br-config
[git/pt-br] Improve wording of git-config examples
| -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)  | 
