mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 12:46:02 +02:00
git-ls-tree: add Spanish translation
This commit is contained in:
parent
9d547ed61e
commit
996d2a5d51
1 changed files with 16 additions and 0 deletions
16
pages.es/common/git-ls-tree.md
Normal file
16
pages.es/common/git-ls-tree.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue