mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:22:09 +02:00
git-mktree: add Spanish translation (#12532)
* git-mktree: add Spanish translation --------- Co-authored-by: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com>
This commit is contained in:
parent
6b5b13d716
commit
bf6dcefcc6
1 changed files with 24 additions and 0 deletions
24
pages.es/common/git-mktree.md
Normal file
24
pages.es/common/git-mktree.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# git mktree
|
||||
|
||||
> Construye un objeto árbol usando texto formateado `ls-tree`.
|
||||
> Más información: <https://git-scm.com/docs/git-mktree>.
|
||||
|
||||
- Construye un objeto árbol y verifica que el hash de cada entrada del árbol identifica un objeto existente:
|
||||
|
||||
`git mktree`
|
||||
|
||||
- Permite que falten objetos:
|
||||
|
||||
`git mktree --missing`
|
||||
|
||||
- Lee la salida terminada en NUL (carácter cero) del objeto árbol (`ls-tree -z`):
|
||||
|
||||
`git mktree -z`
|
||||
|
||||
- Permite la creación de múltiples objetos árbol:
|
||||
|
||||
`git mktree --batch`
|
||||
|
||||
- Ordena y construye un árbol a partir de `stdin` (se requiere un formato de salida de `git ls-tree` no recursivo):
|
||||
|
||||
`git mktree < {{ruta/a/árbol.txt}}`
|
Loading…
Add table
Reference in a new issue