Skip to content

Instantly share code, notes, and snippets.

@cduruk
Created July 23, 2009 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cduruk/152478 to your computer and use it in GitHub Desktop.
Save cduruk/152478 to your computer and use it in GitHub Desktop.
Jekyll Deployment Script
#! /bin/sh
echo "Commit message:"
read
git add .
git commit -avm "$REPLY"
git push origin master
jekyll
rsync -ave ssh _site/ pistone.dreamhost.com:blog.duruk.net
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment