# git clone > Clone un dépôt existant. > Plus d'informations : . - 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}}`