1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 01:26:03 +02:00

git-ls-tree: add Spanish translation

This commit is contained in:
ivanhercaz 2020-01-17 20:10:52 +00:00 committed by Iván Hernández Cazorla
parent 9d547ed61e
commit 996d2a5d51

View file

@ -0,0 +1,16 @@
# git ls-tree
> Muestra los contenidos de un objeto árbol.
> Más información: <https://git-scm.com/docs/git-ls-tree>.
- Muestra el contenido del árbol en una rama:
`git ls-tree {{nombre_de_la_rama}}`
- Muestra el contenido del árbol en un commit (recursivo en subárboles):
`git ls-tree -r {{hash_del_commit}}`
- Muestra solo los nombres de archivos del árbol en un commit:
`git ls-tree --name-only {{hash_del_commit}}`