Source control issue with deploying versions
- by Bonefisher
Hi all,
we have this discussion about how to deploy to production revisions that are UAT closed without revisions with UAT not-closed status.
We are using SVN and we figured out that we are not able to just take revisions without prior-revisions on the same file made.
Let me explain it on this example:
we have 3 revisions made on same file:
r1: UAT closed (ready to deploy)
r2: UAT not-closed (not ready)
r3: UAT closed (ready to deploy)
now I want to deploy only my changes for which the UAT is closed (e.g. r1 and r3).
In SVN this is not possible because r3 contains also r2 changes..
How do you made this to work? Maybe branching? Or just take r1 and wait until r2 is UAT closed?
thanks