mirror of https://github.com/CrimsonTome/tldr.git
29 lines
656 B
Markdown
29 lines
656 B
Markdown
# git apply
|
||
|
||
> İndeks veya dosyalara yama uygula.
|
||
> Daha fazla bilgi için: <https://git-scm.com/docs/git-apply>.
|
||
|
||
- Yamalanan dosyalarla ilgili mesajları yazdır:
|
||
|
||
`git apply --verbose {{örnek/dosya}}`
|
||
|
||
- Yamalanan dosyaları indekse uygula ve ekle:
|
||
|
||
`git apply --index {{örnek/dosya}}`
|
||
|
||
- Uzak yama dosyası uygula:
|
||
|
||
`curl {{https://ornek.com/dosya.patch}} | git apply`
|
||
|
||
- Çıktı için fark statistiği çıkar ve yamayı uygula:
|
||
|
||
`git apply --stat --apply {{örnek/dosya}}`
|
||
|
||
- Yamayı tersten uygula:
|
||
|
||
`git apply --reverse {{örnek/dosya}}`
|
||
|
||
- Yama sonucunu çalışan ağacı değiştirmeden indekste sakla:
|
||
|
||
`git apply --cache {{örnek/dosya}}`
|