如何通过用户获取Git提交

时间:2016-08-24 08:28:16

标签: git get

我想知道是否有办法使用GitHub或GitLab(最好是后者)API来获取用户的提交?例如,检索用户最后一次提交。

1 个答案:

答案 0 :(得分:0)

git log --author =“那个用户”

- 作者仅显示作者条目与指定字符串匹配的提交。

https://git-scm.com/book/ch2-3.html

http://dymitruk.com/blog/2012/07/18/filtering-by-author-name/