This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
Releases: jordanbyron/capistrano_confirm_branch
Releases · jordanbyron/capistrano_confirm_branch
Version 1.0.4
Adds support for newer git "up to date" messages. #5
1.0.3
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
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.