Github Blog 만들기
1. Github Blog 생성
Reference
- 블로그 생성 : 왕초보를 위한 Github 블로그 만들기 (1)
- Ruby 설치
- Windows : RubyInstaller
- 3.0 버전 설치 시 오류 발생 -> 2.7 버전으로 설치
- Windows : RubyInstaller
- Ubuntu에 Jekyll 설치하기
2. Posting 해보기
Reference
3. 테마 적용
사용 테마 : minimal-mistakes
- fork 후 repository 이름을 USERNAME.github.io로 변경
- 불필요한 파일 및 폴더 제거
.editorconfig
.gitattributes
.github
/docs
/test
CHANGELOG.md
minimal-mistakes-jekyll.gemspec
README.md
screenshot-layouts.png
screenshot.png - 필요한 폴더 생성
_posts
_pages
_drafts - Gemfile 수정
source “https://rubygems.org”
gem “jekyll”, “~> 3.5”
gem “minimal-mistakes-jekyll”
gem “kramdown-parser-gfm” - 라이브러리 의존성 설치
At local repository$ bundle install
- 적용 확인
bundle exec jekyll serve
- 원격 서버에 push
git add .
git commit -m "your_comment"
git push
댓글남기기