我在GitHub有一个项目,在过去的几年里,我已经对项目进行了多次更改。在每次提交中,我都添加了一个关于提交的小文本(例如,修复了函数A的问题)。
有没有办法下载到目前为止我提交的所有提交?我不想下载每个提交代码的更改,只是我正在编写的文本..这可能吗?
答案 0 :(得分:2)
GitHub有一个API。
https://api.github.com/repos/(username)/(repository)/commits
列表提交存储库
GET /repos/:owner/:repo/commits
然后,您只需阅读message
个对象
commit
个键即可
修改强>
如果您尝试在私有存储库上执行此操作,则必须先进行身份验证。
curl
的基本示例:
curl -u username:password https://api.github.com/repos/username/repository/commits
更多相关内容:Other Authentication Methods
答案 1 :(得分:1)
假设您从当地的Git项目中完成了工作,那么GitHub就不必参与其中。您可以签出相关分支,获取更新,然后使用git log
:
git checkout master # assuming contributions go to the master branch
git pull origin master
git log --author="yaylitzis" # replace 'yaylitzis' with your actual username
拉取是必需的,因为您的本地分支可能由于某种原因没有您的所有提交。