1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pt_BR/common/git-pull.md
Pedro Mariano 26b18347d0
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>
2023-10-15 22:23:21 +05:30

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}}