blog history
blog 작업내용
1. gitgub repository 등록 : 프로젝트 저장소
gitgub repository 등록 : 프로젝트 저장소
repositroy 종류
- Local repository : 본인의 컴퓨터에 저장된 로컬 버전의 프로젝트 저장소.
- Remote repository : 로컬 repositroy 반대로 내 컴퓨터 저장소가 github(서버)의 저장소
2. Local에 Ruby 설치
- PC에 Ruby 설치 : Ruby Installer for Windows : Ruby 다운로드
Jekyll 설치 :
1
C:\> gem install bundler jekyll
설치후
1
C:\> ruby -v : 버전 확인
1
C:\> jekyll -v : 버전 확인
3. repositroy Clone 폴더 생성
reposiroy 복제 폴더 생성
1
ex) C:\github\reposiroty> git clone https://github.com/{my_github_username}/{my_github_username}.github.io
4. Jekyll 생성
Jekyll 생성
1
ex) C:\github\reposiroty> jekyll new ./
bundler 설치
1
ex) C:\github\reposiroty> bundle install 또는 bundler
5. Jekyll 기동
jekyll 기동
1
ex) C:\github\reposiroty> bundler exec jekyll serve
6. Jekyll 확인
Chrom 에서 : http://127.0.0.1:4000 확인
- 참조1: https://www.irgroup.org/posts/Chirpy-%ED%85%8C%EB%A7%88-%EC%BB%A4%EC%8A%A4%ED%84%B0%EB%A7%88%EC%9D%B4%EC%A7%95/
- 참조2: https://j1mmyson.github.io/posts/postingGuide/
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.