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

committed by
GitHub

parent
6b167bcdd4
commit
8c8314f725
24
pages.fr/common/git-fetch.md
Normal file
24
pages.fr/common/git-fetch.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# git fetch
|
||||
|
||||
> Cherche les objets et réferences depuis un registre distant.
|
||||
> Plus d'informations: <https://git-scm.com/docs/git-fetch>.
|
||||
|
||||
- Cherche les dernières modifications du référentiel amont distant par défaut (si configuré) :
|
||||
|
||||
`git fetch`
|
||||
|
||||
- Cherche les nouvelles branches depuis un registre distant :
|
||||
|
||||
`git fetch {{nom_distant}}`
|
||||
|
||||
- Cherche les nouvelles branches depuis tout les registres distant :
|
||||
|
||||
`git fetch --all`
|
||||
|
||||
- Recherche egalement les tags depuis le registre courrant :
|
||||
|
||||
`git fetch --tags`
|
||||
|
||||
- Supprime les références locales de branches ayant été supprimés du registre distant :
|
||||
|
||||
`git fetch --prune`
|
Reference in New Issue
Block a user