Explain how to create one than one wiki

… using the same GitHub user or organization account
This commit is contained in:
Ali Servet Donmez
2014-05-27 16:55:21 +02:00
parent 72285e303b
commit a5ccb4e541

View File

@@ -8,11 +8,25 @@ Learn [Markdown](https://help.github.com/articles/github-flavored-markdown)! The
Whenever you feel stuck, go to [MDwiki's own site](http://mdwiki.info) for further information. Whenever you feel stuck, go to [MDwiki's own site](http://mdwiki.info) for further information.
Fork It One Wiki Only? Fork It.
------- -----------------------
First off fork this repo and call it something like `<MyProject>-wiki`. First off fork this repo and call it something like `<MyProject>-wiki`.
Multiple Wikis? Clone It.
-------------------------
In case would you like to create one than one wiki for the same GitHub user or organization, then forking won't cut it, because at the moment of this writing, GitHub won't allow you to fork multiple times. Below instructions how to clone this repository using the CLI.
First off, create a new (empty) repository on GitHub, then;
```bash
git clone https://github.com/exalted/mdwiki-seed.git
cd mdwiki-seed
git remote add foobar <New Repository GitHub HTTPS/SSH Clone URL>
git push --set-upstream foobar gh-pages
```
Create a New Wiki Create a New Wiki
----------------- -----------------