tldr/pages.tr/common/git-ls-tree.md

17 lines
440 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# git ls-tree
> Bir ağaç nesnesinin içeriklerini sırala.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-ls-tree>.
- Bir daldaki ağacın içeriklerini sırala:
`git ls-tree {{dal_name}}`
- Bir commit üstündeki ağacın içeriklerini alt ağaçlara ayırarak sırala:
`git ls-tree -r {{commit_değeri}}`
- Bir commit üstündeki ağacın yalnızca dosya isimlerini göster:
`git ls-tree --name-only {{commit_değeri}}`