git*: add French translation (#4619)
This commit is contained in:

committed by
GitHub

parent
6b167bcdd4
commit
8c8314f725
28
pages.fr/common/git-remote.md
Normal file
28
pages.fr/common/git-remote.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# 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}}`
|
Reference in New Issue
Block a user