Posts Jekyll 블로그 만들기 간단 메모
Post
Cancel

Jekyll 블로그 만들기 간단 메모

Start Jekyll Blog


1. Ruby 설치


2. Jekyll Bundler 설치

  • cmd 켰을 때 나오는 사용자 기본 경로에 설치
1
gem install jekyll bundler


3. 블로그용 깃헙 원격 리포 준비

  • 리포 이름은 닉네임.github.io


4. 로컬 리포 준비

  • 원격 리포랑 연결
1
2
3
4
5
6
git init
git add .
git commit -m "init"
git branch -M main
git remote add origin [깃헙 원격 리포 주소]
git push -u origin main


5. Jekyll 테마 다운로드


6. 번들 설치

  • cmd로 해당 로컬 리포 경로에 이동 후
1
bundle install


간혹 에러를 띄우는 경우가 있는데, 에러 메시지에

1
To update to the latest version installed on your system, run `bundle update --bundler`

라던가

1
To install the missing version, run `gem install bundler:1.16.3`

같은게 써있다면,

제시된 명령어를 실행해주고 다시 bundle install 해주면 된다.


7. 로컬호스트로 실행

1
bundle exec jekyll serve


8. docs 폴더에 내용물 넣어주고 깃헙 업로드

1
2
3
4
5
6
7
8
echo Y| rmdir docs /s
mkdir docs
xcopy "_site\*.*" "docs\" /e /y

git pull
git add .
git commit -m "Upload"
git push


9. [최초 한번만] 깃헙 페이지 설정

  • 원격 리포 - Settings - Pages
  • Source - Branch:main - /docs - Save


Themes


1. 깔끔한 블로그 테마


2. 독특한 느낌


3. 개발 블로그용 테마


4. 포트폴리오용 테마


5. 설명 문서용 테마

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