snippetbashTip
jj interdiff — Compare changes of two revisions. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#j
Viewed 0 times
commandtwoclijj interdiffchangescomparerevisionsmore
Problem
How to use the
jj interdiff command: Compare changes of two revisions. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-interdiff>.Solution
jj interdiff — Compare changes of two revisions. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-interdiff>.Compare changes from a revision to the working copy:
jj interdiff {{[-f|--from]}} {{revset}}Compare changes from a revision to another revision:
jj interdiff {{[-f|--from]}} {{from_revset}} {{[-t|--to]}} {{to_revset}}Compare changes in specific paths only:
jj interdiff {{[-f|--from]}} {{from_revset}} {{[-t|--to]}} {{to_revset}} {{filesets}}Show a summary of changes:
jj interdiff {{[-f|--from]}} {{revset}} {{[-s|--summary]}}Show diff statistics:
jj interdiff {{[-f|--from]}} {{revset}} --statShow a Git-format diff:
jj interdiff {{[-f|--from]}} {{revset}} --gitShow a word-level diff with changes indicated only by color:
jj interdiff {{[-f|--from]}} {{revset}} --color-wordsCode Snippets
Compare changes from a revision to the working copy
jj interdiff {{[-f|--from]}} {{revset}}Compare changes from a revision to another revision
jj interdiff {{[-f|--from]}} {{from_revset}} {{[-t|--to]}} {{to_revset}}Compare changes in specific paths only
jj interdiff {{[-f|--from]}} {{from_revset}} {{[-t|--to]}} {{to_revset}} {{filesets}}Show a summary of changes
jj interdiff {{[-f|--from]}} {{revset}} {{[-s|--summary]}}Show diff statistics
jj interdiff {{[-f|--from]}} {{revset}} --statContext
tldr-pages: common/jj interdiff
Revisions (0)
No revisions yet.