Skip to content

Instantly share code, notes, and snippets.

@motdotla
Forked from Sutto/deploy.rb
Created March 19, 2009 22:53
Show Gist options
  • Save motdotla/82112 to your computer and use it in GitHub Desktop.
Save motdotla/82112 to your computer and use it in GitHub Desktop.
task :check_revision do
unless `git rev-parse HEAD` == `git rev-parse origin/master`
puts ""
puts " \033[1;33m**************************************************\033[0m"
puts " \033[1;33m* WARNING: HEAD is not the same as origin/master *\033[0m"
puts " \033[1;33m**************************************************\033[0m"
puts ""
end
end
before "deploy", "check_revision"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment