Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github Pages not detecting that repo name is my username

Tags:

github-pages

I'm trying to set up a site with Github pages.

My Github username has a mix of capital and lowercase.

Every way I have tried naming the repo results in it publishing at "username.github.io/username" rather than "username.github.io".

Repo name matching profile name URL with subdomain

Renaming the repo with all lowercase has the same result. Does anybody have an idea?

like image 389
JRHutson Avatar asked Oct 25 '25 03:10

JRHutson


1 Answers

The answer is sumple: The domain needs to be included.

Name your repo jrhutson.github.io instead of JRHutson.

This will link your repository to the URL https://jrhutson.github.io and not https://jrhutson.github.io/JRHutson.

See https://pages.github.com/ (step 1) for reference.

like image 53
dan1st Avatar answered Oct 27 '25 00:10

dan1st