1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:02:08 +02:00
tldr/pages.tr/common/git-commit-tree.md
4G3NT 87ec0727fc
pages*: add backticks to every io stream (#10442)
* pages*: add backticks to every io stream
2023-07-02 18:42:01 +05:30

691 B

git commit-tree

Commit cisimleri oluşturmaya yarayan düşük seviyeli araç. Ayrıca git commit sayfasına bakılması önerilir. Daha fazla bilgi için: https://git-scm.com/docs/git-commit-tree.

  • Belirtilen mesaj ile bir commit cismi oluştur:

git commit-tree {{ağaç}} -m "{{mesaj}}"

  • Bir dosyadan mesaj okuyan bir commit cismi oluştur (stdin için - ekini kullan):

git commit-tree {{ağaç}} -F {{örnek/dosya}}

  • GPG anahtarıyla imzalanmış bir commit cismi oluştur:

git commit-tree {{ağaç}} -m "{{mesaj}}" --gpg-sign

  • Belirtilen ana commit cismi ile bir commit cismi oluştur:

git commit-tree {{ağaç}} -m "{{mesaj}}" -p {{ana_commit_sha}}