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