1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

git-stash: update Spanish translation (#13742)

* git-stash: update Spanish translation

* Update git-stash.md

* Update pages.es/common/git-stash.md

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Darío Hereñú 2024-09-27 14:42:21 -03:00 committed by GitHub
parent 21804ee8bc
commit 6b07ee3986
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,15 +5,15 @@
- Almacena los cambios actuales, excepto los archivos nuevos (sin seguimiento):
`git stash push -m {{mensaje_opcional_stash}}`
`git stash push --message {{mensaje_opcional_stash}}`
- Almacena los cambios actuales, incluyendo los archivos nuevos (sin seguimiento):
`git stash -u`
`git stash --include-untracked`
- Selecciona interactivamente partes de los archivos modificados para almacenarlos:
`git stash -p`
`git stash --patch`
- Lista todos los stashes (muestra el nombre del stash, la rama relacionada y el mensaje):
@ -21,7 +21,7 @@
- Muestra los cambios como un parche entre el stash (por defecto es `stash@{0}`) y la confirmación de cuando se creó la entrada stash por primera vez:
`git stash show -p {{stash@{0}}}`
`git stash show --patch {{stash@{0}}}`
- Aplica un stash (por defecto es el último, llamado `stash@{0}`):