Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get github wiki content by github api

Tags:

github

api

wiki

Checked https://developer.github.com/v3/

I can't find out any api which can get github wiki content?

like image 522
Daniel Avatar asked Dec 26 '14 08:12

Daniel


People also ask

What can be done with GitHub API?

Github APIs( or Github ReST APIs) are the APIs that you can use to interact with GitHub. They allow you to create and manage repositories, branches, issues, pull requests, and many more. For fetching publicly available information (like public repositories, user profiles, etc.), you can call the API.

How do I get content from GitHub?

To download from GitHub, you should navigate to the top level of the project (SDN in this case) and then a green "Code" download button will be visible on the right. Choose the Download ZIP option from the Code pull-down menu. That ZIP file will contain the entire repository content, including the area you wanted.

Can I use GitHub as a wiki?

Wikis are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud and GitHub Enterprise Server.


1 Answers

It is possible to use the wiki as a separate Git repository by specifying this in the url: https://github.com/user/project.wiki.git

See more here

like image 188
Alexey Rodin Avatar answered Oct 12 '22 11:10

Alexey Rodin