Remix.run Logo
nickisnoble 7 hours ago

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 ..@`

steveklabnik 6 hours ago | parent [-]

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