git-restore: add Spanish translation

client-spec/clarity
ivanhercaz 2020-01-17 23:42:50 +00:00 committed by Iván Hernández Cazorla
parent d13f598822
commit c2ca9667a2
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# git restore
> Restura archivo del arbol de trabajo. Requiere la version 2.23 o superior de Git.
> Véase también `git checkout`
> Más información: <https://git-scm.com/docs/git-restore/>.
- Restaura un archivo eliminado del contenido del commit actual (HEAD):
`git restore {{ruta/al/archivo}}`
- Restaura un archivo a la versión de un commit diferente:
`git restore --source {{commit}} {{ruta/al/archivo}}`
- Deshace cambios sin commit para los archivos rastreados, revirtiendo al HEAD actual:
`git restore .`