I have the following stream structure:
Parent-+->Child1
|
+->Child2
There are changes that were promoted from stream Child1
to stream Parent
and broke build of the stream Child2
.
I need to revert these changes only in Child2
.
Exactly I need to do the following (Gig-style):
- Get a diff over the transaction that broke the build (in inverted way)
- Apply it to stream
Child2
Locking of the Child2
to the transaction is not a variant, because there are some changes that were done after the broken transaction was made.