Skip to content

Instantly share code, notes, and snippets.

@ashaw
Created March 28, 2011 20:04
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 ashaw/891157 to your computer and use it in GitHub Desktop.
Save ashaw/891157 to your computer and use it in GitHub Desktop.
desc "generate gh-pages"
task :gh_pages do
`rake docs`
`git branch` =~ /^\* (.+)?\n/
current_branch = $1
`git commit -am "docs"`
`git checkout gh-pages`
`git merge #{current_branch}`
`git push github gh-pages`
`git checkout #{current_branch}`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment