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

29 lines
616 B
Markdown
Raw Normal View History

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