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
24
pages.fr/common/git-clone.md
Normal file
24
pages.fr/common/git-clone.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# git clone
|
||||
|
||||
> Clone un dépôt existant.
|
||||
> Plus d'informations : <https://git-scm.com/docs/git-clone>.
|
||||
|
||||
- Clone un dépôt existant :
|
||||
|
||||
`git clone {{remote_repository_location}}`
|
||||
|
||||
- Clone un dépôt existant et ses sous-modules :
|
||||
|
||||
`git clone --recursive {{remote_repository_location}}`
|
||||
|
||||
- Clone un dépôt local :
|
||||
|
||||
`git clone -l`
|
||||
|
||||
- Clone silencieusement :
|
||||
|
||||
`git clone -q`
|
||||
|
||||
- Clone un dépôt existant en ne récupérant que les 10 commits les plus récents sur la branche par défaut (plus rapide) :
|
||||
|
||||
`git clone --depth {{10}} {{remote_repository_location}}`
|
Reference in New Issue
Block a user