Reputation: 4571
I'm looking for a method like hg backout
, but in reverse. Specifically, instead of undoing the diffs associated with a given changset, I want to actually apply them on top of an arbitrary revision. Is this possible?
Upvotes: 0
Views: 88
Reputation: 25540
hg transplant
(bundled extension) or hg graft
(core, since 2.0) do this.
Upvotes: 4