Post

Jekyll 설치하다

gem install jekyll
jekyll new myblog
cd myblog
jekyll build

참 쉽죠잉~

github.io에 페이지 만들기

github.com에서 id.github.io 이름으로 repository를 만든 다음 jekyll로 만든 디렉토리에서

git init
git add .
git commit -m '적당한 메시지'
git remote add origin https://https://github.com/id/id.github.io
git push -u origin master

이후 id.github.io로 접속하면 페이지를 볼 수 있다.

This post is licensed under CC BY 4.0 by the author.