Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 787 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 787 Bytes

This is the sources of the DevMine project's website (http://devmine.ch/).

It is built with Jekyll as a static site. The master branch contains only the generated files, ie what is in the _site.

To update the website, proceed like this:

  • Make changes in the source branch.
  • Build the site with Jekyll and test it locally.
  • Commit your changes.
  • Run make publish

This is the commands that are run when you type make publish:

git branch -D master
git checkout -b master
git filter-branch --subdirectory-filter _site/ -f
git checkout source
git push --all origin

The idea behind this process is from @randymorris (see this).