2021-12-29 12:28:58 +00:00
|
|
|
|
# git apply
|
|
|
|
|
|
|
|
|
|
> İndeks veya dosyalara yama uygula.
|
2022-01-29 20:17:39 +00:00
|
|
|
|
> Daha fazla bilgi: <https://git-scm.com/docs/git-apply>.
|
2021-12-29 12:28:58 +00:00
|
|
|
|
|
|
|
|
|
- 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}}`
|