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:
parent
21804ee8bc
commit
6b07ee3986
1 changed files with 4 additions and 4 deletions
|
@ -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}`):
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue