Idea is to have dev_release_branch all time acting just as alias to latest release branch of that environment ( dev in this eg ).
And to have new branch created post every release by some convention & to update symb ref every time post completion of migration or release to respective en.
git symbolic-ref -m "Updating rel branch ref to new" dev_rel_3rd_Nov dev_release_branch
Would like to store both reference & its mapped name in central repository. Is there a way to achieve this as simple git push HEAD:refs/for/dev_branch
fails
This is to support incremental release process & hence computing files changed would be easier by comparison of 2 branch names hashes..
Thanks!