mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-24 14:24:17 +02:00
git-apply: refresh pages (#17691)
This commit is contained in:
parent
f5a288ab3a
commit
24f915ecab
7 changed files with 21 additions and 21 deletions
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
- Gib Informationen über gepatchte Dateien aus:
|
- Gib Informationen über gepatchte Dateien aus:
|
||||||
|
|
||||||
`git apply --verbose {{pfad/zu/datei}}`
|
`git apply {{[-v|--verbose]}} {{pfad/zu/datei}}`
|
||||||
|
|
||||||
- Integriere die Patch-Datei und füge sie zum Index hinzu:
|
- Integriere die Patch-Datei und füge sie zum Index hinzu:
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Integriere eine externe Patch-Datei:
|
- Integriere eine externe Patch-Datei:
|
||||||
|
|
||||||
`curl -L {{https://beispiel.de/datei.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://beispiel.de/datei.patch}} | git apply`
|
||||||
|
|
||||||
- Gib diffstat des Inputs aus und integriere die Patch-Datei:
|
- Gib diffstat des Inputs aus und integriere die Patch-Datei:
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- Integriere eine Patch-Datei in umgekehrter Reihenfolge:
|
- Integriere eine Patch-Datei in umgekehrter Reihenfolge:
|
||||||
|
|
||||||
`git apply --reverse {{pfad/zu/datei}}`
|
`git apply {{[-R|--reverse]}} {{pfad/zu/datei}}`
|
||||||
|
|
||||||
- Speichere das Ergebnis einer Patch-Datei im Index, ohne den Arbeitsbaum zu verändern:
|
- Speichere das Ergebnis einer Patch-Datei im Index, ohne den Arbeitsbaum zu verändern:
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
- Afficher les messages à propos des fichiers corrigés :
|
- Afficher les messages à propos des fichiers corrigés :
|
||||||
|
|
||||||
`git apply --verbose {{chemin/vers/fichier}}`
|
`git apply {{[-v|--verbose]}} {{chemin/vers/fichier}}`
|
||||||
|
|
||||||
- Applique le correctif et ajoute les fichiers à l index :
|
- Applique le correctif et ajoute les fichiers à l index :
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Applique un correctif depuis une source distante :
|
- Applique un correctif depuis une source distante :
|
||||||
|
|
||||||
`curl -L {{https://example.com/file.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://example.com/file.patch}} | git apply`
|
||||||
|
|
||||||
- Affiche les différences résultantes et applique le correctif :
|
- Affiche les différences résultantes et applique le correctif :
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- Applique le correctif en ordre inverse :
|
- Applique le correctif en ordre inverse :
|
||||||
|
|
||||||
`git apply --reverse {{chemin/vers/fichier}}`
|
`git apply {{[-R|--reverse]}} {{chemin/vers/fichier}}`
|
||||||
|
|
||||||
- Stocke le résultat du correctif dans l'index sans modifier la branche courante :
|
- Stocke le résultat du correctif dans l'index sans modifier la branche courante :
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
- Tampilkan informasi lengkap (mode verbose) atas proses perubahan yang sedang dilakukan:
|
- Tampilkan informasi lengkap (mode verbose) atas proses perubahan yang sedang dilakukan:
|
||||||
|
|
||||||
`git apply --verbose {{jalan/menuju/file}}`
|
`git apply {{[-v|--verbose]}} {{jalan/menuju/file}}`
|
||||||
|
|
||||||
- Gunakan patch dan tambahkan file yang diubah ke dalam indeks perubahan:
|
- Gunakan patch dan tambahkan file yang diubah ke dalam indeks perubahan:
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- Gunakan perubahan dari file patch dari sumber dalam jaringan (online):
|
- Gunakan perubahan dari file patch dari sumber dalam jaringan (online):
|
||||||
|
|
||||||
`curl -L {{https://example.com/file.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://example.com/file.patch}} | git apply`
|
||||||
|
|
||||||
- Tampilkan informasi statistik perbedaan (diffstat) setelah melakukan perubahan menurut file patch:
|
- Tampilkan informasi statistik perbedaan (diffstat) setelah melakukan perubahan menurut file patch:
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
- Batalkan perubahan yang dilakukan melalui file patch:
|
- Batalkan perubahan yang dilakukan melalui file patch:
|
||||||
|
|
||||||
`git apply --reverse {{jalan/menuju/file}}`
|
`git apply {{[-R|--reverse]}} {{jalan/menuju/file}}`
|
||||||
|
|
||||||
- Simpan hasil perubahan ke dalam indeks perubahan tanpa merubah susunan file/direktori dalam direktori kerja saat ini:
|
- Simpan hasil perubahan ke dalam indeks perubahan tanpa merubah susunan file/direktori dalam direktori kerja saat ini:
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
- 패치된 파일에 대한 메시지 출력:
|
- 패치된 파일에 대한 메시지 출력:
|
||||||
|
|
||||||
`git apply --verbose {{경로/대상/파일}}`
|
`git apply {{[-v|--verbose]}} {{경로/대상/파일}}`
|
||||||
|
|
||||||
- 패치를 적용하고 패치된 파일을 색인에 추가:
|
- 패치를 적용하고 패치된 파일을 색인에 추가:
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- 원격 패치 파일 적용:
|
- 원격 패치 파일 적용:
|
||||||
|
|
||||||
`curl -L {{https://example.com/file.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://example.com/file.patch}} | git apply`
|
||||||
|
|
||||||
- 입력에 대한 diffstat을 출력하고 패치를 적용:
|
- 입력에 대한 diffstat을 출력하고 패치를 적용:
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
- 패치를 역방향으로 적용:
|
- 패치를 역방향으로 적용:
|
||||||
|
|
||||||
`git apply --reverse {{경로/대상/파일}}`
|
`git apply {{[-R|--reverse]}} {{경로/대상/파일}}`
|
||||||
|
|
||||||
- 작업 트리를 수정하지 않고 패치 결과를 색인에 저장:
|
- 작업 트리를 수정하지 않고 패치 결과를 색인에 저장:
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
- இணைக்கப்பட்ட கோப்புகளைப் பற்றிய செய்திகளை அச்சிடுங்கள்:
|
- இணைக்கப்பட்ட கோப்புகளைப் பற்றிய செய்திகளை அச்சிடுங்கள்:
|
||||||
|
|
||||||
`git apply --verbose {{கோப்பு/பாதை}}`
|
`git apply {{[-v|--verbose]}} {{கோப்பு/பாதை}}`
|
||||||
|
|
||||||
- இணைக்கப்பட்ட கோப்புகளை குறியீட்டில் பயன்படுத்தவும் மற்றும் சேர்க்கவும்:
|
- இணைக்கப்பட்ட கோப்புகளை குறியீட்டில் பயன்படுத்தவும் மற்றும் சேர்க்கவும்:
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- ரிமோட் பேட்ச் கோப்பைப் பயன்படுத்துங்கள்:
|
- ரிமோட் பேட்ச் கோப்பைப் பயன்படுத்துங்கள்:
|
||||||
|
|
||||||
`curl -L {{https://example.com/கோப்பு.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://example.com/கோப்பு.patch}} | git apply`
|
||||||
|
|
||||||
- உள்ளீட்டிற்கான வெளியீட்டு வேறுபாடு நிலை மற்றும் இணைப்பு பொருந்தும்:
|
- உள்ளீட்டிற்கான வெளியீட்டு வேறுபாடு நிலை மற்றும் இணைப்பு பொருந்தும்:
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- பேட்சை தலைகீழாகப் பயன்படுத்துங்கள்:
|
- பேட்சை தலைகீழாகப் பயன்படுத்துங்கள்:
|
||||||
|
|
||||||
`git apply --reverse {{கோப்பு/பாதை}}`
|
`git apply {{[-R|--reverse]}} {{கோப்பு/பாதை}}`
|
||||||
|
|
||||||
- பேட்ச் முடிவை குறியீட்டில் வேலை செய்யும் மரத்தை மாற்றாமல் சேமிக்கவும்:
|
- பேட்ச் முடிவை குறியீட்டில் வேலை செய்யும் மரத்தை மாற்றாமல் சேமிக்கவும்:
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
- Yamalanan dosyalarla ilgili mesajları yazdır:
|
- Yamalanan dosyalarla ilgili mesajları yazdır:
|
||||||
|
|
||||||
`git apply --verbose {{örnek/dosya}}`
|
`git apply {{[-v|--verbose]}} {{örnek/dosya}}`
|
||||||
|
|
||||||
- Yamalanan dosyaları indekse uygula ve ekle:
|
- Yamalanan dosyaları indekse uygula ve ekle:
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
- Uzak yama dosyası uygula:
|
- Uzak yama dosyası uygula:
|
||||||
|
|
||||||
`curl -L {{https://ornek.com/dosya.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://ornek.com/dosya.patch}} | git apply`
|
||||||
|
|
||||||
- Çıktı için fark statistiği çıkar ve yamayı uygula:
|
- Çıktı için fark statistiği çıkar ve yamayı uygula:
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
- Yamayı tersten uygula:
|
- Yamayı tersten uygula:
|
||||||
|
|
||||||
`git apply --reverse {{örnek/dosya}}`
|
`git apply {{[-R|--reverse]}} {{örnek/dosya}}`
|
||||||
|
|
||||||
- Yama sonucunu çalışan ağacı değiştirmeden indekste sakla:
|
- Yama sonucunu çalışan ağacı değiştirmeden indekste sakla:
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
- 显示补丁文件的应用详情:
|
- 显示补丁文件的应用详情:
|
||||||
|
|
||||||
`git apply --verbose {{路径/到/文件}}`
|
`git apply {{[-v|--verbose]}} {{路径/到/文件}}`
|
||||||
|
|
||||||
- 应用补丁并将修改添加到暂存区:
|
- 应用补丁并将修改添加到暂存区:
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
- 应用远程补丁文件:
|
- 应用远程补丁文件:
|
||||||
|
|
||||||
`curl -L {{https://example.com/file.patch}} | git apply`
|
`curl {{[-L|--location]}} {{https://example.com/file.patch}} | git apply`
|
||||||
|
|
||||||
- 应用远程补丁文件:
|
- 应用远程补丁文件:
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
- 反向应用补丁(撤销更改):
|
- 反向应用补丁(撤销更改):
|
||||||
|
|
||||||
`git apply --reverse {{路径/到/文件}}`
|
`git apply {{[-R|--reverse]}} {{路径/到/文件}}`
|
||||||
|
|
||||||
- 将补丁结果存入暂存区但不修改工作区:
|
- 将补丁结果存入暂存区但不修改工作区:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue