tldr/pages.fr/common/git-remote.md

29 lines
616 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# git remote
> Organisation des dépots suivis ("remotes").
> Plus d'informations : <https://git-scm.com/docs/git-remote>.
- Affiche les dépots existants, leur nom et url :
`git remote -v`
- Affiche les informations a propos d'un dépot :
`git remote show {{nom_distant}}`
- Ajoute un dépot :
`git remote add {{nom_distant}} {{url_distant}}`
- Change l'url d'un dépot (ajouter `--add` pour conserver l'url existante) :
`git remote set-url {{nom_distant}} {{new_url}}`
- Suprime un dṕot :
`git remote remove {{nom_distant}}`
- Renome un dépot :
`git remote rename {{old_name}} {{new_name}}`