Can I create more than one repository for github pages?

后端 未结 9 675
余生分开走
余生分开走 2020-12-07 08:16

I created a repository for hosting a blog on github.Is there any way that I can create more to host multiple blogs?Am I limited to just one repository for hosting(since

9条回答
  •  隐瞒了意图╮
    2020-12-07 09:04

    You can create multiple blogs in your github account.

    1. One repository can be created under your username. Push your code to branch gh-pages and you can see the site on .github.io

    2. Another one can be created under your organisation. For this you will have to create your organization first. Create a new repository under this organisation and push your code to gh-pages. You can see your site on .github.io

    3. You can also create for each of your project and the site will be available on .github.io/

    Please refer this for more information on github pages.

提交回复
热议问题