I am trying to have my github commits as an RSS feed but so far I have not managed to figure it out. I know that a private feed is available with the following syntax:

https://github.com/username.atom?token=token

But this the users activity feed. I would like a commit feed of one of my projects. Thanks in advance!

Perfect, thank you!! this was the final syntax:

https://github.com/username/repository_name/commits/branch_name.atom?login=login&token=token. 

Still cant view commits on all branches though.

share|improve this question

1 Answer

up vote 12 down vote accepted

You want https://github.com/whatever/commits/master.atom, like for the Cloudera flume repository it's https://github.com/cloudera/flume/commits/master.atom.

share|improve this answer
Thank you very much CanSpice. I forgot to mention it is a private repository. Could you please post that example? Also, is there a way for the rss to post from many branches? – jalagrange Sep 8 '11 at 19:47
I'd imagine that it follows the same pattern. Substitute your repository name for whatever and put ?token=token on the end. Give that a shot. – CanSpice Sep 8 '11 at 19:52
Thank you, I updated my question showing the final syntax. However i havent been able to view the commits on all branches – jalagrange Sep 8 '11 at 20:02
Did you try master.atom instead of branch_name.atom? – CanSpice Sep 8 '11 at 20:20
2  
Is there a way to get a feed of tags for a project? Certain projects use tags to provide release tarballs. It would be useful to follow these as an RSS feed. – TrinitronX Oct 31 '11 at 18:50
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.