英文:
GitHub pages URL pointing to GitHub username instead the repository name
问题
这个 GitHub Pages 应用程序是用 Jekyll
编写的。我想让它从 https://indrajith.github.io
上线。但它实际上是从不同的域名上线,并以我的 GitHub 个人资料用户名开头。
我查阅了 GitHub Pages 文档,但在我遵循的所有示例中,它们都将个人资料名称与仓库名称相同。
例如:如果个人资料名称是 x
,仓库名称就是 x.github.io
。
我们不能给仓库指定不同的名称吗?
例如:如果个人资料名称是 x
,仓库名称可以是 x12.github.io
。
英文:
This GitHub pages application is written in Jekyll
. I want it to go live from https://indrajith.github.io
. But it goes live from a different domain and starts with my GitHub profile username.
I referred GitHub pages documentation for this but in all the examples I followed, they give the profile name to the repository name.
Ex: If the profile name is x
repository name is x.github.io
Can't we give a different name for the repository?
Ex: If the profile name is x
repository name is x12.github.io
答案1
得分: 1
你不能使用 indrajith.github.io
,因为 indrajith
很可能是另一个GitHub用户的用户名。所以你只能使用 <github 用户>.github.io
以外的名称。
如果你想从 https://indrajith.github.io
服务器托管你的页面,你需要将你的用户名改成 indrajith
,如果这个用户名还可用的话。
参考:更改GitHub用户名
英文:
You cannot use indrajith.github.io
because indrajith
is likely another GitHub user's name. So you cannot use other than your <github user>.github.io
.
If you want to server your pages from https://indrajith.github.io
, you have to rename your user name to indrajith
if the username is available.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论