Replace non-breaking space with regular space in French pages (#6842)

This commit is contained in:
marchersimon
2021-10-07 09:37:39 +02:00
committed by GitHub
parent 8c5596b720
commit d63065b882
168 changed files with 997 additions and 998 deletions

View File

@@ -1,28 +1,28 @@
# git remote
> Organisation des dépôts suivis ("remotes").
> Plus d'informations : <https://git-scm.com/docs/git-remote>.
> Plus d'informations : <https://git-scm.com/docs/git-remote>.
- Affiche les dépôts existants, leur nom et URL :
- Affiche les dépôts existants, leur nom et URL :
`git remote -v`
- Affiche les informations à propos d'un dépôt :
- Affiche les informations à propos d'un dépôt :
`git remote show {{nom_distant}}`
- Ajoute un dépôt :
- Ajoute un dépôt :
`git remote add {{nom_distant}} {{url_distant}}`
- Change l'URL d'un dépôt (ajouter `--add` pour conserver l'URL existante) :
- Change l'URL d'un dépôt (ajouter `--add` pour conserver l'URL existante) :
`git remote set-url {{nom_distant}} {{new_url}}`
- Supprime un dépôt :
- Supprime un dépôt :
`git remote remove {{nom_distant}}`
- Renomme un dépôt :
- Renomme un dépôt :
`git remote rename {{old_name}} {{new_name}}`