Team, We are using a branching strategy called "Branch per release". For every Release we create a Branch and development, testing and deployment will be done from the same Release branch. After a successful PROD Deployment, we will merge the changes from Release branch to MAIN. So, Our MAIN is always PROD replica..
This plan worked very well, but only one thing is been an issue for us. When we have parallel development for different releases, how do we carry one release changes to other releases before it goes to production?
Sometimes, we are in a situation where we need to develop the next release on top of current development? SO, how do i solve this issue? ANy suggestions?