标签: git get
我想知道是否有办法使用GitHub或GitLab(最好是后者)API来获取用户的提交?例如,检索用户最后一次提交。
答案 0 :(得分:0)
git log --author =“那个用户”
- 作者仅显示作者条目与指定字符串匹配的提交。
https://git-scm.com/book/ch2-3.html
http://dymitruk.com/blog/2012/07/18/filtering-by-author-name/