본문 바로가기

News/디자인

Github Blog

RubyInstaller for Windows

 

RubyInstaller for Windows

Is RubyInstaller for you? RubyInstaller is the easiest and most widely-used Ruby environment on Windows. And Ruby is a great language for beginners as well as professionals. It’s suitable for small scripts as well as large applications. RubyInstaller com

rubyinstaller.org

 

 

 

Jekyll on Windows

 

Jekyll on Windows

While Windows is not an officially-supported platform, it can be used to run Jekyll with the proper tweaks.

jekyllrb.com

 

 

 

Jekyll Installation

gem install jekyll
gem install minima
gem install bundler
gem install jekyll-feed
gem install tzinfo-data
jekyll -v

 

 

 

Upload Server

jekyll new [Blog Name]
jekyll serve

 

 

 

Remote Repository

cd Users/[Blog Name]
git init 
git commit -m "first commit"
git config --global user.name [GithubID]
git config --global user.email [GithubEmail]
git remote add origin https://github.com/[Github ID]/github.io.git
git config --global init.defaultbranch main (in case: on branch master)
git pull --rebase origin main
git push +origin main

 

 

 

Github Blog Jekyll Theme

Minimal Mistakes

 

Minimal Mistakes

Minimal Mistakes is a flexible two-column Jekyll theme. Perfect for hosting your personal site, blog, or portfolio on GitHub or self-hosting on your own server. As the name implies — styling is purposely minimalistic to be enhanced and customized by you.

jekyllthemes.org

 

 

 

3. 깃헙 블로그에 Hydejack 테마 적용해보기

 

3. 깃헙 블로그에 Hydejack 테마 적용해보기 (github with Jekyll and Hydejack theme)

앞선글 앞의 글에서는 기본적으로 사용되는 ruby, bundler, jekyll 등을 다운받고 사용해보는 과정을 정리했습니다. 2. Jekyll 으로 꾸며 보자! (github.io) 나만의 github 블로그 Jekyll 으로 꾸며 보자! (gitHub.i

supermemi.tistory.com

 

 

 

[git] 에러 | ! [rejected] main -> main (fetch first) (Tistory Blog realzzu)

 

[Git] ! [rejected] main -> main (fetch first) 에러 해결 방법

평소와 같이 코딩을 한 후에 로컬 저장소에서 원격 저장소로 git push를 했는데 에러가 발생하였다. 열심히 구글링 한 결과, 문제 원인과 해결 방법을 알아냈다. ! [rejected] main -> main (fetch first) 원인

realzzu.tistory.com

 

 

 

Theme File Copy

Remove HTML File

Upload Server 

cd Users/[Blog Name]
git pull --rebase origin main
git push origin +main
jekyll serve

 

 

 










>