1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

git-reflog: add Spanish translation

This commit is contained in:
ivanhercaz 2020-01-17 23:31:59 +00:00 committed by Iván Hernández Cazorla
parent 2b086c63fe
commit 6d5a08dae1

View file

@ -0,0 +1,16 @@
# git reflog
> Muestra un registro de cambios de las referencias (*reflog*) locales como HEAD, ramas o etiquetas.
> Más información: <https://git-scm.com/docs/git-reflog>.
- Muestra un registro de referencias para HEAD:
`git reflog`
- Muestra el registro de referencias para una rama:
`git reflog {{nombre_de_la_rama}}`
- Muestra solo las últimas 5 entradas en el registro de referencias:
`git reflog -n {{5}}`