Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access Github Wiki Branches

I am able to access Github Wiki pages directly using the below URL:

  • https://raw.githubusercontent.com/wiki/Siminov/android-core/Preface.md

But if I create a branch of master Github Wiki then how to access those pages?

like image 837
Simply Innovative Avatar asked Aug 17 '15 11:08

Simply Innovative


People also ask

How do I access Wikipedia on GitHub?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Wiki.

How do I edit a wiki page in git?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Wiki. Using the wiki sidebar, navigate to the page you want to change, and then click Edit.

How do I download Wikipedia from GitHub?

Any GitHub wiki can be cloned by appending wiki. git to the repo url, so the clone url for the repo https://myorg/myrepo/ is: [email protected]:myorg/myrepo. wiki. git (for ssh) or https://github.com/my/myrepo.wiki.git (for https).


1 Answers

Non-master branches of GitHub wikis are not available through the web interface:

Once you have cloned the wiki, you can add new files, edit existing ones, and commit your changes. You and your collaborators can create branches when working on wikis, but only changes pushed to the master branch will be made live and available to your readers.

The only way to access them is via the wiki repository using whatever software you prefer for working with Git.

like image 54
Chris Avatar answered Sep 24 '22 00:09

Chris