mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-02 13:15:24 +02:00

* at, batch: update Brazilian Portuguese translation * git-{add,config,diff,remote,stage,status,tag}: update Brazilian Portuguese tanslation * curl: update Brazilian Portuguese translation * dd: update Brazilian Portuguese translation * docker-images: update Brazilian Portuguese translation * docker-ps: update Brazilian Portuguese translation * find: update Brazilian Portuguese translation * npm: update Brazilian Portuguese translation * Apply suggestions from code review * docker-images: update Brazilian Portuguese translation * docker-images: fix syntax in Brazilian Portuguese translation * dd: use dispositivo and origem instead of drive and fonte * curl: undo adding accent to URL * curl: remove incorrect "remoto" from pt_BR translation. The original file doesn't have "remote", and it is not needed. --------- Co-authored-by: Renie Siqueira <reniedev.github@3nie.com>
33 lines
881 B
Markdown
33 lines
881 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 do checkout.
|
|
> 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 --short`
|
|
|
|
- Mostra informação verbosa em alterações tanto na área de preparação e no diretório de trabalho:
|
|
|
|
`git status --verbose --verbose`
|
|
|
|
- Mostra informações da branch e de rastreamento:
|
|
|
|
`git status --branch`
|
|
|
|
- Mostra a saída em formato curto junto com as informações da branch:
|
|
|
|
`git status --short --branch`
|
|
|
|
- Mostra o número de entradas atualmente armazenadas:
|
|
|
|
`git status --show-stash`
|
|
|
|
- Não mostra arquivos não rastreados na saída:
|
|
|
|
`git status --untracked-files=no`
|