- 
    Github에 git pages를 위해 repository를 생성합니다. - repository 이름은 {username}.github.io 형식이어야 합니다.
 https://github.com/Luvery93/luvery93.github.io.git
- 
    위에서 생성한 repository에 Jekyll project를 push 합니다. - Git이 설치되어 있지 않을 경우 여기에서 Git을 설치합니다.
- git 프로젝트가 없다면 CMD 창에서 아래를 입력합니다.
 $ git clone https://github.com/Luvery93/luvery93.github.io.git $ cd luvery93.github.io- git 프로젝트가 있고 수정을 반영한다면 아래와 같이 진행합니다.
 $ git add . $ git commit -m "..." $ git push origin master- push 까지 된 commit을 취소하고 수정 사항을 반영한다면 아래와 같이 진행합니다.
 $ git reset --hard HEAD~1 $ git add . $ git commit "..." $ git push origin +master 
