标签: git github git-log
例如在bootstrap中 使用时
git log --pretty=format:"%an%x2C%ae%x2C%ai%x2C" >> filename
我可以获得16000多次提交
我想在提交中添加和删除,所以我使用
git log --stat --pretty=format:"%an%x2C%ae%x2C%ai%x2C" >> filename
但我只能获得6000多次提交
如何获取所有16000+提交统计信息?谢谢。