git-*: add pt_BR translation (#10975)

* git-commit: add pt_BR translation

* git-diff: add pt_BR translation

* git-init: add pt_BR translation

* git-push: add pt_BR translation

* git-pull: add pt_BR translation

* git-rebase: add pt_BR translation

* git-reset: add pt_BR translation

* git-status: add pt_BR translation

* git-log: add pt_BR translation

* git-checkout: add pt_BR translation

* git-branch: add pt_BR translation

* git-*: update pt_BR translation

Signed-off-by: Pedro Mariano <ph_marianocorrea@hotmail.com>

* git-branch: update pt_BR translation

* Apply suggestions from code review

* git-branch: update pt_BR translation

* apply suggestion on `git-log.md`

---------

Signed-off-by: Pedro Mariano <ph_marianocorrea@hotmail.com>
Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
This commit is contained in:
Pedro Mariano
2023-10-15 13:53:21 -03:00
committed by GitHub
parent 159e5cea7c
commit 26b18347d0
11 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# git status
> Mostra as alterações nos arquivos em um repositório Git.
> Lista os arquivos alterados, adicionados e excluídos em comparação com o atual commit verificado.
> Mais informações: <https://git-scm.com/docs/git-status>.
- Mostra arquivos alterados que ainda não foram adicionados para commit:
`git status`
- Fornece a saída em formato curto:
`git status -s`
- Não mostra arquivos não rastreados na saída:
`git status --untracked-files=no`
- Mostra a saída em formato curto junto com as informações da branch:
`git status -sb`