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.
...
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...
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?
...