Skip to content

Instantly share code, notes, and snippets.

@mikesjewett
Last active December 31, 2015 16:39
Show Gist options
  • Save mikesjewett/8015268 to your computer and use it in GitHub Desktop.
Save mikesjewett/8015268 to your computer and use it in GitHub Desktop.
Creating a Jekyll blog hosted by Github Pages

After installing Jekyll, create a repo named username.github.io in your Github account. (username is your Github username). Then go to your terminal:

➜  code  jekyll new username.github.io
➜  code  cd username.github.io
➜  code  git init
➜  code  git add .
➜  code  git commit -m 'First commit'
➜  code  git remote add origin git@github.com:username/username.github.io.git
➜  code  git push -u origin master

That's it. Github will automatically publish your site at http://username.github.io. -- Pretty cool stuff.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment