What is the best way to set up a robust deploy strategy for a RoR app that allows for the following scenario?
- new feature committed
- new feature deployed to staging environment
- emergency feature/fix committed
- emergency fix deployed to staging (and previous feature excluded)
- emergency fix tested on staging
- emergency fix deployed to production
- original new feature deployed back to staging
As far as I can tell, I will need to use either git branches or tagging or both. Are there any tools that can reduce or automate the overhead of maintaining these branches or tags?