ablog

不器用で落着きのない技術者のメモ

GitHub に *.github.io という URL の Web サイトを作る

今更だけど、GitHubを使って3分でHPを公開する。 - Qiita を参考に GitHub に Web サイトを作ってみた。

  • ブラウザで GitHub にログインする。

  • [New repository] をクリックし、"Create a new repository" というページに移動する。
  • [Repository name] に "GitHubアカウント名.github.io(例: yoheia.github.io)" と入力し、"Create repository" をクリックする。

  • [GitHub Pages]-[Launch automatic page generator] をクリックし、"New user site" ページに移動する。

  • [Continue layouts] をクリックし、"Choose a theme" ページに移動する。

  • ページ上部のテーマから好きなものを選択し、[Publish page] をクリックする。

  • ページが自動生成される。

  • ローカルに clone する
$ git clone https://github.com/yoheia/yoheia.github.io.git
$ tree yoheia.github.io
yoheia.github.io
├── images
│   ├── bg_hr.png
│   ├── blacktocat.png
│   ├── icon_download.png
│   └── sprite_download.png
├── index.html
├── javascripts
│   └── main.js
├── params.json
└── stylesheets
    ├── github-light.css
    └── stylesheet.css

3 directories, 9 files