Skip to content

Instantly share code, notes, and snippets.

@jshcrowthe
Last active August 29, 2015 14:28
Show Gist options
  • Save jshcrowthe/fa91e36fa27d3ee4c465 to your computer and use it in GitHub Desktop.
Save jshcrowthe/fa91e36fa27d3ee4c465 to your computer and use it in GitHub Desktop.
Things needed to do Jekyll (properly)

How To Get Up and Running with jekyll

All of the following are commands that you run at your terminal

Installing Ruby (the right way)

  • \curl -sSL https://get.rvm.io | bash -s stable --ruby

Installing Jekyll and Bundler

  • gem install jekyll
  • gem install bundler

Installing git

  • ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
  • brew install git

You can now go and clone your repo (git clone <URL>)

Installing bundle deps

  • bundle install NOTE: This command needs to be run in the repo directory

MAKE SURE THAT YOU clone THE REPOSITORY SO THAT IT HAS ALL OF THE PROPER BRANCHES AND WHAT NOT

Pushing to Github

  • rake publish NOTE: This command also needs to be run in the repo directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment