mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
git-revert: add Spanish translation
This commit is contained in:
parent
c2ca9667a2
commit
0e7a9c6f07
1 changed files with 20 additions and 0 deletions
20
pages.es/common/git-revert.md
Normal file
20
pages.es/common/git-revert.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# git revert
|
||||
|
||||
> Crea nuevos commits que revierten el efecton de los anteriores.
|
||||
> Más información: <https://git-scm.com/docs/git-revert>.
|
||||
|
||||
- Revierte el commit más reciente:
|
||||
|
||||
`git revert {{@}}`
|
||||
|
||||
- Revierte el quinto último commit:
|
||||
|
||||
`git revert HEAD~{{4}}`
|
||||
|
||||
- Revierte múltiples commits:
|
||||
|
||||
`git revert {{master~5..master~2}}`
|
||||
|
||||
- No crea nuevos commits, solo cambia el árbol de trabajo:
|
||||
|
||||
`git revert -n {{0c01a9..9a1743}}`
|
Loading…
Add table
Reference in a new issue