1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.tr/common/git-commit-tree.md

21 lines
689 B
Markdown

# 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}}`