mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +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>
469 B
469 B
git pull
Obtém branch de um repositório remoto e mescla-a ao repositório local. Mais informações: https://git-scm.com/docs/git-pull.
- Baixa as alterações do repositório remoto padrão e mescla-as:
git pull
- Baixa as alterações do repositório remoto padrão e usa o avanço rápido:
git pull --rebase
- Baixa as alterações de um determinado repositório remoto e branch, então, mescla-as no HEAD:
git pull {{nome_remoto}} {{branch}}