Is there a way to do like paginated retrieval of commit history like git log -n 100 -from 200
? It would fetch 100 commits after the first 200th commit. Is there such a feature?
You can do that with:
git log -n 100 --skip=200
The documentation for these options can be found here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With