1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-12 02:15:44 +02:00
tldr/pages.pt_BR/common/git-status.md
Pedro Mariano 26b18347d0
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>
2023-10-15 22:23:21 +05:30

21 lines
562 B
Markdown

# 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`