Files
cheatsheet-tldr/tldr/jj-log
2025-07-04 00:20:35 +00:00

22 lines
545 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jj log
> Show revision history as a graph.
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-log>.
- Show revision history as a graph:
`jj log`
- Show only given revsets (e.g. `B::D`, `A..D`, `B|C|D`, etc.):
`jj log {{[-r|--revisions]}} {{revsets}}`
- Show log with a particular template for each line (e.g. 5 characters of commit hash and author):
`jj log {{[-T|--template]}} 'commit_id.shortest(5) ++ " " ++ author'`