tldr/pages.it/common/git-remote.md
Guido Lena Cota 83ddae952d
git*: add Italian translation (#4734)
* git-prune: add it translation

* git-reflog: add it translation

* git-remote: add it translation

* git-repack: add it translation

* git-restore: add it translation

* git-rev-parse: add it translation

* git-rev-list: add it translation

* git-rm: add it translation

* git-rebase: add it translation

* git-revert: add it translation

* git-reset: add it translation

* git-replace: add it translation

* git-reset: separate file tokens

* Use correct suffix for multiple tokens

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

* Integrate updates in #4533

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
2020-11-02 13:42:32 +01:00

29 lines
642 B
Markdown

# git remote
> Gestisci i collegamenti remoti ("remote") di un repository locale.
> Maggiori informazioni: <https://git-scm.com/docs/git-remote>.
- Mostra l'elenco dei collegamenti remoti, con il loro nome e URL:
`git remote -v`
- Mostra informazioni su un remote:
`git remote show {{nome_remote}}`
- Aggiungi un remote:
`git remote add {{nome_remote}} {{url_remote}}`
- Modifica l'URL di un remote (usa `--add` per preservare gli URL esistenti):
`git remote set-url {{nome_remoto}} {{nuovo_url}}`
- Elimina un remote:
`git remote remove {{nome_remote}}`
- Rinomina un remote:
`git remote rename {{vecchio_nome}} {{nuovo_nome}}`