Add French translation for git basic commands (#3483)
* git-add: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-commit: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-push: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-clone: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-pull: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * Fixex based on PR comments Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com>
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
954f0e62dc
commit
8ec0c33e44
16
pages.fr/common/git-pull.md
Normal file
16
pages.fr/common/git-pull.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# git pull
|
||||
|
||||
> Récupère une branche depuis le serveur distant et la fusionne dans la branche local.
|
||||
> Plus d'informations : <https://git-scm.com/docs/git-pull>.
|
||||
|
||||
- Télécharge les changements depuis le serveur distant par défaut et fusionne les :
|
||||
|
||||
`git pull`
|
||||
|
||||
- Télécharge les changements depuis le serveur distant par défaut et applique les changements locaux par dessus :
|
||||
|
||||
`git pull --rebase`
|
||||
|
||||
- Télécharge les changements depuis un serveur et une branche distante, puis fusionne les dans HEAD :
|
||||
|
||||
`git pull {{remote_name}} {{branch}}`
|
Reference in New Issue
Block a user