logoalt Hacker News

nickisnobleyesterday at 4:04 PM1 replyview on HN

Easy: `jj log -n 25`

(Default is 10 iirc, so if you want 15 more... 25)

If you want everything, ever: `jj log -r ::`

Or every ancestor of your current change: `jj log -r ..@`


Replies

steveklabnikyesterday at 5:22 PM

IIRC -n only limits the output, not expands it. jj log and jj long -n 25 show the same results for me.