Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.84 KB

git-apply.md

File metadata and controls

49 lines (36 loc) · 1.84 KB
layout title description content_hash last_modified_at related_topics tldri18n_status
page
common/git-apply (Türkçe)
İndeks veya dosyalara yama uygula.
766aae950a9251c6152222368f2a92d19d4be066
2024-01-02
title url icon
Deutsch version
/de/common/git-apply.html
bi bi-globe
title url icon
English version
/en/common/git-apply.html
bi bi-globe
title url icon
français version
/fr/common/git-apply.html
bi bi-globe
title url icon
தமிழ் version
/ta/common/git-apply.html
bi bi-globe
2

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 -L 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