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?
Is there a way to do like paginated retrieval of commit history like git
Share
You can do that with:
The documentation for these options can be found here.