Multiple GitHub Websites

I have three static web projects that I would like to host on my GitHub account.
I noticed in the documentation that you should write your username for the repo name in order to tell GitHub that this will be a static website (e.g. bluebird/bluebird.imtqy.com ).

Is it possible to post my projects with a different name than my username?

+5
source share
1 answer

If you need three separate .imtqy.com URLs, for example:

... then you have no choice but to create a separate GitHub account for each site.
Obviously, you can only have one URL http:/username.imtqy.com for the username http:/username.imtqy.com


But there is another solution: you can have one static page for each repository.
This is called Project Pages .

You can create three repositories, one for each static site:

Follow the instructions and you can create three static sites with these URLs:

+6
source

Source: https://habr.com/ru/post/1268331/


All Articles