I have my master branch that is used to deploy to a staging server. And I have my stable branch that is used to deploy to the production server. The capistrano script I use is setup this way.
Current workflow:
Whenever there is an issue with production, I branch out from stable branch, fix things up, commit it, merge it with stable and then deploy to production.
This gives no chance for me to test that bug fix (happened in that hot fix branch), in my staging server. Ideally what I want would be:
Wanted workflow:
Whenever there is an issue with production, I branch out from stable branch, fix things up, commit it, merge it with master, deploy and test that fix in staging server, validate if it works, then merge that hot fix branch to stable and deploy it the production.
How do I get this right with Capistrano? Please help.