Is it possible to read activity of a GitHub private repository and of its branches?
Asked
Active
Viewed 4,934 times
15
-
3possible duplicate of [Seting up Github Commit RSS feed](http://stackoverflow.com/questions/7353538/seting-up-github-commit-rss-feed) – Greg Hewgill May 24 '12 at 02:31
2 Answers
13
Sure, just follow these steps:
- In your browser, login to your private repository on GitHub.
- Select the branch you are interested in.
- Click on the Commits tab.
- You will find a RSS icon next to the words "Commit History".
- Copy the link or click the icon to add the URL to your feedreader.

Sebi
- 8,323
- 6
- 48
- 76
-
11I didn't see the RSS icon, so it's probably been removed? Instead I got the link by searching for atom in the HTML source code of the page. A browser plugin/extension could also work, while taking the webpage's link into a RSS reader would work for public but not for private repositories (since it would first have to login to github). – Simon B. Jan 24 '14 at 09:23
-
6@SimonB. has the new correct answer. The RSS links are on longer visible on the page, but they can be found easily by searching source of a branch's page (http://github.com/[user_or_org]/[repo]/tree/[branch]) for "atom". – jmorganmartin Apr 22 '14 at 00:24
-
1@jmorganmartin is 100% correct here and that should be the new answer to this question. Private hub repo feed found that way by viewing the repo branch in the browser, view source, and search for atom, use that href link as the feed and poof! it works – cynistersix Apr 28 '14 at 17:41
7
Note that since July 2013, you can list GitHub feeds through the Feeds API, but:
Private feeds are only returned when authenticating via Basic Auth since current feed URIs use the older, non revokable auth tokens.

VonC
- 1,262,500
- 529
- 4,410
- 5,250