I was wondering what’s the best way to go about performing the equivalent of cherry picking / git-resetting some of the changes from a merge proposal? I was considering either rolling back changes through the history till I reach a point where I don’t need to cherry pick anymore and then go forward - or just make a new branch off of main and copy-paste the transforms from the current branch over. Is there a better way to do this that I could use?
I don’t think there’s an easy way to do this because cherry picking is removing some diffs from a set of diffs. But we treat saves as a capture of pipeline at that time, so you’d only be able to overwrite one state in time with another one.
Copy and paste is the best answer here.