mirror of https://github.com/CrimsonTome/tldr.git
21 lines
457 B
Markdown
21 lines
457 B
Markdown
# git revert
|
|
|
|
> Crea nuevas confirmaciones que revierten el efecto de los anteriores.
|
|
> Más información: <https://git-scm.com/docs/git-revert>.
|
|
|
|
- Revierte la confirmación más reciente:
|
|
|
|
`git revert {{HEAD}}`
|
|
|
|
- Revierte la quinta confirmación más reciente:
|
|
|
|
`git revert HEAD~{{4}}`
|
|
|
|
- Revierte múltiples confirmaciones:
|
|
|
|
`git revert {{rama~5..rama~2}}`
|
|
|
|
- Revierte confirmaciones sin crear nuevas confirmaciones:
|
|
|
|
`git revert -n {{0c01a9..9a1743}}`
|