diff --git a/pages.de/common/git-clone.md b/pages.de/common/git-clone.md index 8235842c16..03567571e8 100644 --- a/pages.de/common/git-clone.md +++ b/pages.de/common/git-clone.md @@ -13,15 +13,15 @@ - Klone nur das `.git` Verzeichnis für ein existierendes repository: -`git clone --no-checkout {{url_zu_repository}}` +`git clone {{[-n|--no-checkout]}} {{url_zu_repository}}` - Klone ein lokales Repository: -`git clone --local {{pfad/zu/lokalem_repository}}` +`git clone {{[-l|--local]}} {{pfad/zu/lokalem_repository}}` - Klone ohne Meldungen: -`git clone --quiet {{url_zu_repository}}` +`git clone {{[-q|--quiet]}} {{url_zu_repository}}` - Klone ein existierendes Repository und rufe nur die neuesten 10 Commits im Standard-Branch ab (spart Zeit): @@ -29,8 +29,8 @@ - Klone ein existierendes Repository, aber lade nur einen bestimmten Branch herunter: -`git clone --branch {{name}} --single-branch {{url_zu_repository}}` +`git clone {{[-b|--branch]}} {{name}} --single-branch {{url_zu_repository}}` - Klone ein existierendes Repository mit einem bestimmten SSH Befehl: -`git clone --config core.sshCommand="{{ssh -i pfad/zu/privat_ssh_schlüssel}}" {{url_zu_repository}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i pfad/zu/privat_ssh_schlüssel}}" {{url_zu_repository}}` diff --git a/pages.es/common/git-clone.md b/pages.es/common/git-clone.md index d89dbf50fb..f4f194f4ee 100644 --- a/pages.es/common/git-clone.md +++ b/pages.es/common/git-clone.md @@ -13,15 +13,15 @@ - Clona sólo el directorio `.git` de un repositorio existente: -`git clone --no-checkout {{ubicación_repositorio_remoto}}` +`git clone {{[-n|--no-checkout]}} {{ubicación_repositorio_remoto}}` - Clona un repositorio local: -`git clone --local {{ruta/al/repositorio/local}}` +`git clone {{[-l|--local]}} {{ruta/al/repositorio/local}}` - Clona en silencio: -`git clone --quiet {{ubicación_repositorio_remoto}}` +`git clone {{[-q|--quiet]}} {{ubicación_repositorio_remoto}}` - Clona un repositorio existente obteniendo sólo los 10 commits más recientes de la rama por defecto (útil para ahorrar tiempo): @@ -29,8 +29,8 @@ - Clona un repositorio existente buscando sólo una rama específica: -`git clone --branch {{nombre}} --single-branch {{ubicación_repositorio_remoto}}` +`git clone {{[-b|--branch]}} {{nombre}} --single-branch {{ubicación_repositorio_remoto}}` - Clona un repositorio existente usando un comando SSH específico: -`git clone --config core.sshCommand="{{ssh -i ruta/a/clave_privada_ssh}}" {{ubicación_repositorio_remoto}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i ruta/a/clave_privada_ssh}}" {{ubicación_repositorio_remoto}}` diff --git a/pages.id/common/git-clone.md b/pages.id/common/git-clone.md index bfabb92782..7b3e948b27 100644 --- a/pages.id/common/git-clone.md +++ b/pages.id/common/git-clone.md @@ -13,15 +13,15 @@ - Gandakan hanya direktori `.git` pada repositori saat ini: -`git clone --no-checkout {{lokasi_repositori_remote}}` +`git clone {{[-n|--no-checkout]}} {{lokasi_repositori_remote}}` - Gandakan repositori lokal: -`git clone --local {{jalan/menuju/repositori/lokal}}` +`git clone {{[-l|--local]}} {{jalan/menuju/repositori/lokal}}` - Gandakan dengan senyap: -`git clone --quiet {{lokasi_repositori_remote}}` +`git clone {{[-q|--quiet]}} {{lokasi_repositori_remote}}` - Gandakan repositori yang sudah ada dengan hanya mengambil 10 komit paling baru pada branch bawaan (berguna untuk menghemat waktu): @@ -29,8 +29,8 @@ - Gandakan repositori yang sudah ada dengan hanya mengambil dari cabang tertentu: -`git clone --branch {{name}} --single-branch {{lokasi_repositori_remote}}` +`git clone {{[-b|--branch]}} {{name}} --single-branch {{lokasi_repositori_remote}}` - Gandakan repositori yang sudah ada menggunakan perintah SSH tertentu: -`git clone --config core.sshCommand="{{ssh -i jalan/menuju/kunci_ssh_privat}}" {{lokasi_repositori_remote}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i jalan/menuju/kunci_ssh_privat}}" {{lokasi_repositori_remote}}` diff --git a/pages.ko/common/git-clone.md b/pages.ko/common/git-clone.md index 7389d941d9..9f45a5fa05 100644 --- a/pages.ko/common/git-clone.md +++ b/pages.ko/common/git-clone.md @@ -13,15 +13,15 @@ - 기존 저장소의 `.git` 디렉토리만 복제: -`git clone --no-checkout {{원격_저장소_위치}}` +`git clone {{[-n|--no-checkout]}} {{원격_저장소_위치}}` - 로컬 저장소 복제: -`git clone --local {{경로/대상/로컬/저장소}}` +`git clone {{[-l|--local]}} {{경로/대상/로컬/저장소}}` - 조용히 복제: -`git clone --quiet {{원격_저장소_위치}}` +`git clone {{[-q|--quiet]}} {{원격_저장소_위치}}` - 기존 저장소를 기본 브랜치에서 최근 커밋 10개만 복제 (시간 절약에 좋음): @@ -29,8 +29,8 @@ - 기존 저장소의 특정 브랜치만 복제: -`git clone --branch {{이름}} --single-branch {{원격_저장소_위치}}` +`git clone {{[-b|--branch]}} {{이름}} --single-branch {{원격_저장소_위치}}` - 특정 SSH 명령을 사용하여 기존 저장소 복제: -`git clone --config core.sshCommand="{{ssh -i path/to/private_ssh_key}}" {{원격_저장소_위치}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i path/to/private_ssh_key}}" {{원격_저장소_위치}}` diff --git a/pages.pt_BR/common/git-clone.md b/pages.pt_BR/common/git-clone.md index 86a7b5fe97..2a2e069c07 100644 --- a/pages.pt_BR/common/git-clone.md +++ b/pages.pt_BR/common/git-clone.md @@ -13,15 +13,15 @@ - Clona somente o diretório `.git` de um repositório existente: -`git clone --no-checkout {{local_do_repositório_remoto}}` +`git clone {{[-n|--no-checkout]}} {{local_do_repositório_remoto}}` - Clona um repositório local: -`git clone --local {{caminho/para/repositório/local}}` +`git clone {{[-l|--local]}} {{caminho/para/repositório/local}}` - Clona de forma silenciosa: -`git clone --quiet {{local_do_repositório_remoto}}` +`git clone {{[-q|--quiet]}} {{local_do_repositório_remoto}}` - Clona um repositório existente buscando somente os 10 commits mais recentes na branch padrão (útil para salvar tempo): @@ -29,8 +29,8 @@ - Clona um repositório existente buscando somente uma branch específica: -`git clone --branch {{nome}} --single-branch {{local_do_repositório_remoto}}` +`git clone {{[-b|--branch]}} {{nome}} --single-branch {{local_do_repositório_remoto}}` - Clona um repositório existente usando um comando SSH específico: -`git clone --config core.sshCommand="{{ssh -i caminho/para/chave_ssh_privada}}" {{local_do_repositório_remoto}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i caminho/para/chave_ssh_privada}}" {{local_do_repositório_remoto}}` diff --git a/pages.ta/common/git-clone.md b/pages.ta/common/git-clone.md index 705550f572..0cb352d146 100644 --- a/pages.ta/common/git-clone.md +++ b/pages.ta/common/git-clone.md @@ -13,15 +13,15 @@ - ஏற்கனவே உள்ள களஞ்சியத்தின் `.git` கோப்பகத்தை மட்டும் குளோன் செய்யவும்: -`git clone --no-checkout {{தொலை_களஞ்சிய_இடம்}}` +`git clone {{[-n|--no-checkout]}} {{தொலை_களஞ்சிய_இடம்}}` - கணினியில் உள்ள ஒரு களஞ்சியத்தை குளோன் செய்யுங்கள்: -`git clone --local {{கணினியில்/உள்ள/களஞ்சியத்தின்/பாதை}}` +`git clone {{[-l|--local]}} {{கணினியில்/உள்ள/களஞ்சியத்தின்/பாதை}}` - அமைதியாக குளோன்: -`git clone --quiet {{தொலை_களஞ்சிய_இடம்}}` +`git clone {{[-q|--quiet]}} {{தொலை_களஞ்சிய_இடம்}}` - இயல்புநிலை கிளையில் மிகச் சமீபத்திய 10 கமிட்டுகளை மட்டுமே பெறும் களஞ்சியத்தை குளோன் செய்யுங்கள் (நேரத்தைச் சேமிக்க பயனுள்ளதாக இருக்கும்): @@ -29,8 +29,8 @@ - ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்து ஒரு குறிப்பிட்ட கிளையை மட்டும் பெறுங்கள்: -`git clone --branch {{பெயர்}} --single-branch {{தொலை_களஞ்சிய_இடம்}}` +`git clone {{[-b|--branch]}} {{பெயர்}} --single-branch {{தொலை_களஞ்சிய_இடம்}}` - ஒரு குறிப்பிட்ட SSH கட்டளையைப் பயன்படுத்தி ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்யவும்: -`git clone --config core.sshCommand="{{ssh -i தனியார்_ssh_key/பாதை}}" {{தொலை_களஞ்சிய_இடம்}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i தனியார்_ssh_key/பாதை}}" {{தொலை_களஞ்சிய_இடம்}}` diff --git a/pages.zh/common/git-clone.md b/pages.zh/common/git-clone.md index 99d7397c7e..71079bc2bf 100644 --- a/pages.zh/common/git-clone.md +++ b/pages.zh/common/git-clone.md @@ -13,15 +13,15 @@ - 仅克隆现有代码仓库的 `.git` 目录: -`git clone --no-checkout {{远程_代码仓库_地址}}` +`git clone {{[-n|--no-checkout]}} {{远程_代码仓库_地址}}` - 克隆一个本地的代码库: -`git clone --local {{路径/到/本地/代码库名}}` +`git clone {{[-l|--local]}} {{路径/到/本地/代码库名}}` - 静默克隆,不打印任何日志: -`git clone --quiet {{远程代码库地址}}` +`git clone {{[-q|--quiet]}} {{远程代码库地址}}` - 克隆一个现有的代码库,只获取默认分支上10个最新的提交(对节省时间很有用): @@ -29,8 +29,8 @@ - 克隆一个现有的、特定远程分支的代码库: -`git clone --branch {{分支名称}} --single-branch {{远程代码库地址}}` +`git clone {{[-b|--branch]}} {{分支名称}} --single-branch {{远程代码库地址}}` - 使用 SSH 命令克隆一个现有的代码库: -`git clone --config core.sshCommand="{{ssh -i 路径/到/ssh_私钥}}" {{远程代码库地址}}` +`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i 路径/到/ssh_私钥}}" {{远程代码库地址}}`