1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-27 22:35:26 +02:00
tldr/pages/common/jj-revert.md

609 B

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}}