mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
git-apply: add german translation
This commit is contained in:
parent
e5a515c33e
commit
61dc7a5e0f
1 changed files with 16 additions and 0 deletions
16
pages.de/common/git-apply.md
Normal file
16
pages.de/common/git-apply.md
Normal 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`
|
Loading…
Add table
Reference in a new issue