Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Releases: jordanbyron/capistrano_confirm_branch

Version 1.0.4

10 Aug 19:51
Compare
Choose a tag to compare

Adds support for newer git "up to date" messages. #5

1.0.3

02 Aug 15:06
Compare
Choose a tag to compare

Explicitly require highline before running our rake task. Previously this was taken care of by Capistrano but in recent releases (3.1.4+) this appears to no longer be the case.

Version 1.0.2

09 Jun 14:57
Compare
Choose a tag to compare

This release adds a warning when there are unpushed git commits, a handy feature if you have deploy_via set to remote_cache.

You can also opt out of branch or git commit checking via two new configuration options:

# config/deploy.rb

# Turn off unpushed git commit check
set :check_unpushed_commits_before_deploy, false

# Turn off branch change warning
set :confirm_branch_before_deploy, false

For more information checkout the README.