mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-09 23:46:38 +00:00
22 lines
474 B
Plaintext
22 lines
474 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jj show
|
|
|
|
> Show commit description and changes in a revision.
|
|
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-show>.
|
|
|
|
- Show commit description and changes in a revision:
|
|
|
|
`jj show {{revset}}`
|
|
|
|
- Show a summary of changes in a revision:
|
|
|
|
`jj show {{[-s|--summary]}} {{revset}}`
|
|
|
|
- Show a histogram of changes in a revision:
|
|
|
|
`jj show --stat {{revset}}`
|