tldr/pages.es/common/git-revert.md

25 lines
525 B
Markdown
Raw Normal View History

2020-01-17 23:45:27 +00:00
# git revert
> Crea nuevas confirmaciones que revierten el efecto de los anteriores.
2020-01-17 23:45:27 +00:00
> Más información: <https://git-scm.com/docs/git-revert>.
- Revierte la confirmación más reciente:
2020-01-17 23:45:27 +00:00
`git revert {{HEAD}}`
2020-01-17 23:45:27 +00:00
- Revierte la quinta confirmación más reciente:
2020-01-17 23:45:27 +00:00
`git revert HEAD~{{4}}`
- Revierte una confirmación específica:
`git revert {{0c01a9}}`
- Revierte múltiples confirmaciones:
2020-01-17 23:45:27 +00:00
`git revert {{rama~5..rama~2}}`
2020-01-17 23:45:27 +00:00
- Revierte confirmaciones sin crear nuevas confirmaciones:
2020-01-17 23:45:27 +00:00
`git revert -n {{0c01a9..9a1743}}`