jj-diff

shows differences between revisions in Jujutsu

TLDR

Show working copy diff
$ jj diff
Diff specific revision
$ jj diff -r [revision]
Diff between revisions
$ jj diff --from [rev1] --to [rev2]
Diff specific file
$ jj diff [file]

SYNOPSIS

jj diff [options] [paths...]

DESCRIPTION

jj diff shows differences between revisions in Jujutsu. By default, shows changes in the working copy. Use -r for specific revision or --from/--to for range comparisons.

PARAMETERS

-r, --revision rev

Show changes in revision.
--from rev
Start revision for comparison.
--to rev
End revision for comparison.
-s, --summary
Show summary only.
--stat
Show diffstat.

INSTALL

sudo pacman -S jujutsu
sudo apk add jujutsu
sudo zypper install jujutsu
brew install jujutsu
nix profile install nixpkgs#jujutsu

SEE ALSO

jj(1), jj-status(1)