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

17 lines
434 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 ls-tree
> Bir ağaç nesnesinin içeriklerini sırala.
> Daha fazla bilgi: <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}}`