跟踪多个github公共存储库以进行提交

时间:2018-05-01 15:25:13

标签: github tracking

大家好,任何人都知道某个软件或某些东西可以检查新提交的不同回购?

如果有任何新的提交,我想跟踪的不是我想要跟踪的一些回购,但是找不到好的方法。

所以我希望有人有个主意

1 个答案:

答案 0 :(得分:0)

  1. Use RSS feeds (like https://github.com/torvalds/linux/commits/master.atom) and any RSS reader. You can use some "rss to email" service (like Blogtrottr) to get email notifications about new commits.
  2. Use alert() script from git-notifier package. You will need some hosting with git + cron + python support to make it work.

I'm using both depending on scenario. Feeds are simpler to make it work, but you will get less info, and you can miss some commits, since commits history is not really linear and only last 20 commits are visible in feed by default.