Github의 jekyll 테마가 변경됬을 경우 간단하게 변경하는 방법. 그리고 로컬에서 즉시 변경된 테마를 테스트를 하기 위해서는 다음과 같이 한다.

환경 :

linux mint

1.기존 테마의 gem 의존 파일 삭제

rm -rf Gemfile
rm -rf Gemfile.lock

2.해당 테마에 마춰 _config.yml를 변경한다.

주의 yml 문법의 띄어쓰기, 해당 테마의 버전마다 양식을 잘 따라야한다.

3._site는 web관련 빌드가 되어서 파일이 갱신된다. 없어져도 다시 생성됨.

gem에 관련 라이브러리, 테마 설치

필자는 root의 gem을 사용중인다.

> sudo bundle install
> sudo gem install "jekyll-theme-type"

4.로컬에서 기동해보기

> bundle exec jekyll serve --trace
...
...
 Incremental build: disabled. Enable with --incremental
      Generating... 
                    done in 0.122 seconds.
 Auto-regeneration: enabled for '/backup/Project/Src/html/leesang-pack.github.io'
    Server address: http://127.0.0.1:4000
  Server running... press ctrl-c to stop.