Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

There is no way, at this time, to access the GitHub wiki via the API. However, there is a much better solution already built into GitHub. Since Doxygen outputs static HTML pages, you can push them to the gh-pages branch of your project and access them at username.github.com/projectname

For more information, http://pages.github.com/.

share|improve this answer
I tried that, the problem for me is that now my git repository takes forever to clone, since git clone by default grabs all branches... – jdkoftinoff Aug 19 '10 at 16:22

It's now possible to check out the wiki as a separate git repository. You could clone the repository, add the pages to it, and push it. You can access it from this URL:

https://github.com/user/project/wiki/_access

share|improve this answer

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.