Skip to content

Commit 0357895

Browse files
git-clone: refresh pages (#17688)
1 parent 5418aef commit 0357895

File tree

7 files changed

+35
-35
lines changed

7 files changed

+35
-35
lines changed

pages.de/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- Klone nur das `.git` Verzeichnis für ein existierendes repository:
1515

16-
`git clone --no-checkout {{url_zu_repository}}`
16+
`git clone {{[-n|--no-checkout]}} {{url_zu_repository}}`
1717

1818
- Klone ein lokales Repository:
1919

20-
`git clone --local {{pfad/zu/lokalem_repository}}`
20+
`git clone {{[-l|--local]}} {{pfad/zu/lokalem_repository}}`
2121

2222
- Klone ohne Meldungen:
2323

24-
`git clone --quiet {{url_zu_repository}}`
24+
`git clone {{[-q|--quiet]}} {{url_zu_repository}}`
2525

2626
- Klone ein existierendes Repository und rufe nur die neuesten 10 Commits im Standard-Branch ab (spart Zeit):
2727

2828
`git clone --depth {{10}} {{url_zu_repository}}`
2929

3030
- Klone ein existierendes Repository, aber lade nur einen bestimmten Branch herunter:
3131

32-
`git clone --branch {{name}} --single-branch {{url_zu_repository}}`
32+
`git clone {{[-b|--branch]}} {{name}} --single-branch {{url_zu_repository}}`
3333

3434
- Klone ein existierendes Repository mit einem bestimmten SSH Befehl:
3535

36-
`git clone --config core.sshCommand="{{ssh -i pfad/zu/privat_ssh_schlüssel}}" {{url_zu_repository}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i pfad/zu/privat_ssh_schlüssel}}" {{url_zu_repository}}`

pages.es/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- Clona sólo el directorio `.git` de un repositorio existente:
1515

16-
`git clone --no-checkout {{ubicación_repositorio_remoto}}`
16+
`git clone {{[-n|--no-checkout]}} {{ubicación_repositorio_remoto}}`
1717

1818
- Clona un repositorio local:
1919

20-
`git clone --local {{ruta/al/repositorio/local}}`
20+
`git clone {{[-l|--local]}} {{ruta/al/repositorio/local}}`
2121

2222
- Clona en silencio:
2323

24-
`git clone --quiet {{ubicación_repositorio_remoto}}`
24+
`git clone {{[-q|--quiet]}} {{ubicación_repositorio_remoto}}`
2525

2626
- Clona un repositorio existente obteniendo sólo los 10 commits más recientes de la rama por defecto (útil para ahorrar tiempo):
2727

2828
`git clone --depth {{10}} {{ubicación_repositorio_remoto}}`
2929

3030
- Clona un repositorio existente buscando sólo una rama específica:
3131

32-
`git clone --branch {{nombre}} --single-branch {{ubicación_repositorio_remoto}}`
32+
`git clone {{[-b|--branch]}} {{nombre}} --single-branch {{ubicación_repositorio_remoto}}`
3333

3434
- Clona un repositorio existente usando un comando SSH específico:
3535

36-
`git clone --config core.sshCommand="{{ssh -i ruta/a/clave_privada_ssh}}" {{ubicación_repositorio_remoto}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i ruta/a/clave_privada_ssh}}" {{ubicación_repositorio_remoto}}`

pages.id/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- Gandakan hanya direktori `.git` pada repositori saat ini:
1515

16-
`git clone --no-checkout {{lokasi_repositori_remote}}`
16+
`git clone {{[-n|--no-checkout]}} {{lokasi_repositori_remote}}`
1717

1818
- Gandakan repositori lokal:
1919

20-
`git clone --local {{jalan/menuju/repositori/lokal}}`
20+
`git clone {{[-l|--local]}} {{jalan/menuju/repositori/lokal}}`
2121

2222
- Gandakan dengan senyap:
2323

24-
`git clone --quiet {{lokasi_repositori_remote}}`
24+
`git clone {{[-q|--quiet]}} {{lokasi_repositori_remote}}`
2525

2626
- Gandakan repositori yang sudah ada dengan hanya mengambil 10 komit paling baru pada branch bawaan (berguna untuk menghemat waktu):
2727

2828
`git clone --depth {{10}} {{lokasi_repositori_remote}}`
2929

3030
- Gandakan repositori yang sudah ada dengan hanya mengambil dari cabang tertentu:
3131

32-
`git clone --branch {{name}} --single-branch {{lokasi_repositori_remote}}`
32+
`git clone {{[-b|--branch]}} {{name}} --single-branch {{lokasi_repositori_remote}}`
3333

3434
- Gandakan repositori yang sudah ada menggunakan perintah SSH tertentu:
3535

36-
`git clone --config core.sshCommand="{{ssh -i jalan/menuju/kunci_ssh_privat}}" {{lokasi_repositori_remote}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i jalan/menuju/kunci_ssh_privat}}" {{lokasi_repositori_remote}}`

pages.ko/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- 기존 저장소의 `.git` 디렉토리만 복제:
1515

16-
`git clone --no-checkout {{원격_저장소_위치}}`
16+
`git clone {{[-n|--no-checkout]}} {{원격_저장소_위치}}`
1717

1818
- 로컬 저장소 복제:
1919

20-
`git clone --local {{경로/대상/로컬/저장소}}`
20+
`git clone {{[-l|--local]}} {{경로/대상/로컬/저장소}}`
2121

2222
- 조용히 복제:
2323

24-
`git clone --quiet {{원격_저장소_위치}}`
24+
`git clone {{[-q|--quiet]}} {{원격_저장소_위치}}`
2525

2626
- 기존 저장소를 기본 브랜치에서 최근 커밋 10개만 복제 (시간 절약에 좋음):
2727

2828
`git clone --depth {{10}} {{원격_저장소_위치}}`
2929

3030
- 기존 저장소의 특정 브랜치만 복제:
3131

32-
`git clone --branch {{이름}} --single-branch {{원격_저장소_위치}}`
32+
`git clone {{[-b|--branch]}} {{이름}} --single-branch {{원격_저장소_위치}}`
3333

3434
- 특정 SSH 명령을 사용하여 기존 저장소 복제:
3535

36-
`git clone --config core.sshCommand="{{ssh -i path/to/private_ssh_key}}" {{원격_저장소_위치}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i path/to/private_ssh_key}}" {{원격_저장소_위치}}`

pages.pt_BR/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- Clona somente o diretório `.git` de um repositório existente:
1515

16-
`git clone --no-checkout {{local_do_repositório_remoto}}`
16+
`git clone {{[-n|--no-checkout]}} {{local_do_repositório_remoto}}`
1717

1818
- Clona um repositório local:
1919

20-
`git clone --local {{caminho/para/repositório/local}}`
20+
`git clone {{[-l|--local]}} {{caminho/para/repositório/local}}`
2121

2222
- Clona de forma silenciosa:
2323

24-
`git clone --quiet {{local_do_repositório_remoto}}`
24+
`git clone {{[-q|--quiet]}} {{local_do_repositório_remoto}}`
2525

2626
- Clona um repositório existente buscando somente os 10 commits mais recentes na branch padrão (útil para salvar tempo):
2727

2828
`git clone --depth {{10}} {{local_do_repositório_remoto}}`
2929

3030
- Clona um repositório existente buscando somente uma branch específica:
3131

32-
`git clone --branch {{nome}} --single-branch {{local_do_repositório_remoto}}`
32+
`git clone {{[-b|--branch]}} {{nome}} --single-branch {{local_do_repositório_remoto}}`
3333

3434
- Clona um repositório existente usando um comando SSH específico:
3535

36-
`git clone --config core.sshCommand="{{ssh -i caminho/para/chave_ssh_privada}}" {{local_do_repositório_remoto}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i caminho/para/chave_ssh_privada}}" {{local_do_repositório_remoto}}`

pages.ta/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- ஏற்கனவே உள்ள களஞ்சியத்தின் `.git` கோப்பகத்தை மட்டும் குளோன் செய்யவும்:
1515

16-
`git clone --no-checkout {{தொலை_களஞ்சிய_இடம்}}`
16+
`git clone {{[-n|--no-checkout]}} {{தொலை_களஞ்சிய_இடம்}}`
1717

1818
- கணினியில் உள்ள ஒரு களஞ்சியத்தை குளோன் செய்யுங்கள்:
1919

20-
`git clone --local {{கணினியில்/உள்ள/களஞ்சியத்தின்/பாதை}}`
20+
`git clone {{[-l|--local]}} {{கணினியில்/உள்ள/களஞ்சியத்தின்/பாதை}}`
2121

2222
- அமைதியாக குளோன்:
2323

24-
`git clone --quiet {{தொலை_களஞ்சிய_இடம்}}`
24+
`git clone {{[-q|--quiet]}} {{தொலை_களஞ்சிய_இடம்}}`
2525

2626
- இயல்புநிலை கிளையில் மிகச் சமீபத்திய 10 கமிட்டுகளை மட்டுமே பெறும் களஞ்சியத்தை குளோன் செய்யுங்கள் (நேரத்தைச் சேமிக்க பயனுள்ளதாக இருக்கும்):
2727

2828
`git clone --depth {{10}} {{தொலை_களஞ்சிய_இடம்}}`
2929

3030
- ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்து ஒரு குறிப்பிட்ட கிளையை மட்டும் பெறுங்கள்:
3131

32-
`git clone --branch {{பெயர்}} --single-branch {{தொலை_களஞ்சிய_இடம்}}`
32+
`git clone {{[-b|--branch]}} {{பெயர்}} --single-branch {{தொலை_களஞ்சிய_இடம்}}`
3333

3434
- ஒரு குறிப்பிட்ட SSH கட்டளையைப் பயன்படுத்தி ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்யவும்:
3535

36-
`git clone --config core.sshCommand="{{ssh -i தனியார்_ssh_key/பாதை}}" {{தொலை_களஞ்சிய_இடம்}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i தனியார்_ssh_key/பாதை}}" {{தொலை_களஞ்சிய_இடம்}}`

pages.zh/common/git-clone.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
- 仅克隆现有代码仓库的 `.git` 目录:
1515

16-
`git clone --no-checkout {{远程_代码仓库_地址}}`
16+
`git clone {{[-n|--no-checkout]}} {{远程_代码仓库_地址}}`
1717

1818
- 克隆一个本地的代码库:
1919

20-
`git clone --local {{路径/到/本地/代码库名}}`
20+
`git clone {{[-l|--local]}} {{路径/到/本地/代码库名}}`
2121

2222
- 静默克隆,不打印任何日志:
2323

24-
`git clone --quiet {{远程代码库地址}}`
24+
`git clone {{[-q|--quiet]}} {{远程代码库地址}}`
2525

2626
- 克隆一个现有的代码库,只获取默认分支上10个最新的提交(对节省时间很有用):
2727

2828
`git clone --depth {{10}} {{远程代码库地址}}`
2929

3030
- 克隆一个现有的、特定远程分支的代码库:
3131

32-
`git clone --branch {{分支名称}} --single-branch {{远程代码库地址}}`
32+
`git clone {{[-b|--branch]}} {{分支名称}} --single-branch {{远程代码库地址}}`
3333

3434
- 使用 SSH 命令克隆一个现有的代码库:
3535

36-
`git clone --config core.sshCommand="{{ssh -i 路径/到/ssh_私钥}}" {{远程代码库地址}}`
36+
`git clone {{[-c|--config]}} core.sshCommand="{{ssh -i 路径/到/ssh_私钥}}" {{远程代码库地址}}`

0 commit comments

Comments
 (0)