Files
tldr/pages.tr/common/git-commit-graph.md
2022-10-31 06:52:35 -03:00

17 lines
617 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git commit-graph
> Git commit-graph dosyalarını yaz ve doğrula.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-commit-graph>.
- Dizinin yerel `.git` dizinindeki paketlenmiş commit'ler için bir commit-grafik dosyası yaz:
`git commit-graph write`
- Erişilebilen tüm commitleri içeren bir commit-grafik dosyası yaz:
`git show-ref --hash | git commit-graph write --stdin-commits`
- `HEAD`'den erişilebilenlerin yanında mevcut commit-grafik dosyasındaki tüm commit'leri içeren bir commit-grafik dosyası oluştur:
`git rev-parse {{HEAD}} | git commit-graph write --stdin-commits --append`