github-api

update github project wiki through the github api

Is there a way a developer can automatically upload [doxygen] documentation for his project hosted on github through their API? I didn't find anything on develop.github.com related to this. It would be nice if one could just scp the files or something. ...

GitHub Api: How to get Root :tree_sha of a repository?

How do I get the Root :tree_sha of a GitHub repository via the GitHub API? The GitHib API help pages don't seem to explain this critical piece of information: http://develop.github.com/p/object.html Can get the contents of a tree by tree SHA tree/show/:user/:repo/:tree_sha To get a listing of the root tree for the fac...

Private email addresses for private collaborators using github api

I want to use the github api to get a list of private email addresses for collaborators on a project. I've tried using curl -u username:password http://github.com/api/v2/yaml/user/show/username but I can only access public email addresses. Is it possible to access the private email addresses? ...