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-remote.md
Rafael Fontenelle a9fdf2c4d4
pages.pt_BR/*: update pages (#14349)
* 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>
2024-10-24 14:49:48 -03:00

701 B

git remote

Gerencia repositórios monitorados ("remotes"). Mais informações: https://git-scm.com/docs/git-remote.

  • Lista remotes existentes com seus nomes e URLs:

git remote {{-v|--verbose}}

  • Mostra infomação de um remote específico:

git remote show {{nome_do_remote}}

  • Adiciona um remote:

git remote add {{nome_do_remote}} {{url_do_remote}}

  • Muda a URL de um remote (use --add para manter a URL existente):

git remote set-url {{nome_do_remote}} {{nova_url}}

  • Mostra a URL de um remote:

git remote get-url {{nome_do_remote}}

  • Remove um remote:

git remote remove {{nome_do_remote}}

  • Renomeia um remote:

git remote rename {{nome_antigo}} {{novo_nome}}