Created
February 9, 2010 14:56
-
-
Save ryanbriones/299271 to your computer and use it in GitHub Desktop.
Capistrano task to find out what will be deployed on the next release; git only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace :deploy do | |
| desc "What will be deployed on the next release" | |
| task :what do | |
| puts run_locally "git log --color #{current_revision}..#{real_revision}" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment