19

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.

2 Answers 2

18

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 clone the repository from this URL:

[email protected]:user/project.wiki.git
0
7

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

2
  • 1
    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... Aug 19, 2010 at 16:22
  • 1
    try git clone --depth=1 [email protected]:foo/blah.git
    – Isaiah
    Mar 4, 2015 at 12:01

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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