47
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GitHub PagesのUser Pagesでドキュメントルートを変更するにはmasterを殺す

Posted at

TL;DR

GitHub PagesのUser Pages(#{username}.github.ioとかになるやつ)はリポジトリ直下がドキュメントルートになる。

サブディレクトリ(/docsとか)をドキュメントルートにするには…

  • masterから別のブランチ(例:source)を作ってリモートにpushしておく
    • git push origin source
  • リポジトリのSettings->Branches->Default Branchessourceに変更する
Branches.png - `master`ブランチをリモートから削除する - `git push -f --delete origin master` - ドキュメントルートにしたいディレクトリ(例 : `/docs`)をsubtreeとして`master`という名前でpushする - `git subtree push --prefix docs/ origin master`

これでhttp(s)://#{username}.github.ioにアクセスすると/docs/index.htmlが表示される。

参考資料

GitHub PagesにはUser & Organization PagesとProject Pagesの2種類がある。Project Pagesはgh-pagesというブランチか/docs以下をドキュメントルートにする「Source」という設定ができたのだが、User & Organization Pagesではmasterのルート直下しか選べない。

「Source」が設定できるようになる前はgh-pagesというブランチを用意するしかなかったのだが、これもルート直下がドキュメントルートになってしまう。master/docsをsubtreeとしてpushする、というテクニックが以前から使われていたので、それをmasterとして使ってみたというわけ。

47
28
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
47
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?