标签: git
有没有办法像git log -n 100 -from 200那样对提交历史记录进行分页检索?它将在第一次提交200次后获取100次提交。有没有这样的功能?
git log -n 100 -from 200
答案 0 :(得分:9)
你可以这样做:
git log -n 100 --skip=200
这些选项的文档可以是found here。