git-gc, git-pr, git-rm: add pt_BR translation (#8917)

This commit is contained in:
caduvieira
2022-10-10 23:46:01 -03:00
committed by GitHub
parent 0ecfdf412c
commit e5ba236f68
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# git gc
> Otimiza o repositório local limpando os arquivos desnecessários.
> Mais informações: <https://git-scm.com/docs/git-gc>.
- Otimiza o repositório:
`git gc`
- Otimiza de forma mais agressiva, demora mais tempo:
`git gc --aggressive`
- Não remove objetos perdidos (por default é removido):
`git gc --no-prune`
- Não exibe a saída:
`git gc --quiet`
- Exibe toda a ajuda:
`git gc --help`