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,36 @@
# git push
> Envia commits para um repositório remoto.
> Mais informações: <https://git-scm.com/docs/git-push>.
- Envia alterações locais na branch atual para sua contraparte remota padrão:
`git push`
- Envia alterações de uma branch local específica para sua contraparte remota:
`git push {{nome_remoto}} {{branch_local}}`
- Envia alterações de uma branch local específica para sua contraparte remota, e define a branch remota como o destino push/pull padrão da branch local:
`git push -u {{nome_remoto}} {{branch_local}}`
- Envia alterações de uma branch local específica para uma branch remota específica:
`git push {{nome_remoto}} {{branch_local}}:{{branch_remota}}`
- Envia alterações em todas as branches locais para suas contrapartes em um determinado repositório remoto:
`git push --all {{nome_remoto}}`
- Exclui uma branch em um repositório remoto:
`git push {{nome_remoto}} --delete {{branch_remota}}`
- Remove branches remotas que não tenham uma contraparte local:
`git push --prune {{nome_remoto}}`
- Publica etiquetas que ainda não estão no repositório remoto:
`git push --tags`