mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-10 04:35:47 +02:00

* 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>
562 B
562 B
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