14 ms·
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
by nickisnoble 5mo 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 5mo agoIIRC -n only limits the output, not expands it. jj log and jj long -n 25 show the same results for me.