git-apply: add german translation

beep
DoPanik 2020-10-04 01:07:23 +02:00 committed by Starbeamrainbowlabs
parent e5a515c33e
commit 61dc7a5e0f
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# git apply
> Integriert eine Patch-Datei und/oder fügt sie zum Index/Stage hinzu.
> Mehr Informationen: <https://git-scm.com/docs/git-apply>.
- Gibt Meldungen über die gepatchten Dateien aus:
`git apply --verbose {{pfad/zur/datei}}`
- Integriert die Patch-Datei und fügt sie zum Index/Stage hinzu:
`git apply --index {{pfad/zur/datei}}`
- Integriert eine externe Patch-Datei:
`curl {{https://example.com/file.patch}} | git apply`