Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to do "git log -n 100 -from 200"?

Tags:

git

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?

like image 541
Tower Avatar asked Sep 24 '11 17:09

Tower


1 Answers

You can do that with:

git log -n 100 --skip=200

The documentation for these options can be found here.

like image 137
Mark Longair Avatar answered Oct 03 '22 23:10

Mark Longair