multiple pages: fix typos in French translation (#5841)

This commit is contained in:
Nicolas Kosinski
2021-05-01 18:49:31 +02:00
committed by GitHub
parent 50d6e5906a
commit 6467b39f66
96 changed files with 297 additions and 297 deletions

View File

@@ -1,28 +1,28 @@
# git remote
> Organisation des dépots suivis ("remotes").
> Organisation des dépôts suivis ("remotes").
> Plus d'informations : <https://git-scm.com/docs/git-remote>.
- Affiche les dépots existants, leur nom et url :
- Affiche les dépôts existants, leur nom et URL:
`git remote -v`
- Affiche les informations a propos d'un dépot :
- Affiche les informations à propos d'un dépôt :
`git remote show {{nom_distant}}`
- Ajoute un dépot :
- Ajoute un dépôt :
`git remote add {{nom_distant}} {{url_distant}}`
- Change l'url d'un dépot (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}}`
- Suprime un dṕot :
- Supprime un dépôt :
`git remote remove {{nom_distant}}`
- Renome un dépot :
- Renomme un dépôt :
`git remote rename {{old_name}} {{new_name}}`