2020-11-10 11:17:06 +00:00
|
|
|
# git remote
|
|
|
|
|
2021-05-01 17:49:31 +01:00
|
|
|
> Organisation des dépôts suivis ("remotes").
|
2021-10-07 08:37:39 +01:00
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-remote>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Affiche les dépôts existants, leur nom et URL :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote -v`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Affiche les informations à propos d'un dépôt :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote show {{nom_distant}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Ajoute un dépôt :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote add {{nom_distant}} {{url_distant}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Change l'URL d'un dépôt (ajouter `--add` pour conserver l'URL existante) :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote set-url {{nom_distant}} {{new_url}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Supprime un dépôt :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote remove {{nom_distant}}`
|
|
|
|
|
2021-10-07 08:37:39 +01:00
|
|
|
- Renomme un dépôt :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
`git remote rename {{old_name}} {{new_name}}`
|