Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/scottstanfield/scottstanfield.github.io

Personal blog page
https://github.com/scottstanfield/scottstanfield.github.io

Last synced: 20 days ago
JSON representation

Personal blog page

Awesome Lists containing this project

README

        

scottstanfield.github.io
========================

Personal blog page

# One-time gh-pages setup

Taken from [this article][1].

First make sure you don't have a `public` folder: `rm -rf public`

Next, setup the plumbing (one-time):

```
git checkout --orphan gh-pages

git reset
git commit --allow-empty -m 'Initial commit'
git checkout --force master
git worktree add dist gh-pages
```

[1]: http://pressedpixels.com/articles/deploying-to-github-pages-with-git-worktree/