1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 02:55:38 +02:00
tldr/pages/common/jj-revert.md

17 lines
609 B
Markdown
Raw Normal View History

# jj revert
> Apply the reverse of the given revision(s).
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-revert>.
- Apply the reverse of the revisions specified by the given revsets (e.g. `B::D`, `A..D`, `B|C|D`, etc.):
`jj revert {{[-r|--revisions]}} {{revsets}}`
- Apply the reverse on top of specified revisions:
`jj revert {{[-r|--revisions]}} {{revsets}} {{[-d|--destination]}} {{revsets}}`
- Apply the reverse before and/or after specified revisions:
`jj revert {{[-r|--revisions]}} {{revsets}} {{[-B|--insert-before]}} {{revsets}} {{[-A|--insert-after]}} {{revsets}}`