获取gitHub更改历史记录

问题描述 投票:0回答:1

我正在尝试找到一种方法来获取主分支的更改历史记录,但没有成功。

我试图在定义的时间线内检查已经进行了更改的前10个文件。

有任何想法吗?

git github github-api github-for-mac
1个回答
0
投票

最后,我将其解压缩为CSV文件并按更改的值排序。

这就是我解决问题的方法....

git diff $(git rev-list -n1 --before="1 week ago" master) --histogram --stat >file.csv
© www.soinside.com 2019 - 2024. All rights reserved.