How do I get notifications for commits to a repository?

前端 未结 8 1560
孤城傲影
孤城傲影 2021-02-05 02:04

I\'d like to know what kind of commits are being made to the Lithium framework so I can update (or rollback) when there is something major.

I\'m already watching the re

8条回答
  •  被撕碎了的回忆
    2021-02-05 02:33

    I just found out by accident that you can easily manage to achieve this:

    • fork the project (if you haven't done it yet)
    • create a pull request for yourself from the selected branch, e.g. from master of head project to master of your fork:
      • base repository: your/project ; base: master <-- head repository: original/project ; compare: master
    • do NOT merge this pull request
    • under the Email section of your Notifications settings enable:
      • Comments on Issues and Pull Requests
      • Pull Request reviews
      • Pull Request pushes

    That's it. You will receive email notifications about every commit on master branch.

提交回复
热议问题