In the classic VCSs (CVS/SVN) I can add new files/folders in one branch and then "tag" them with some branch tag so they appear on another branch as well (from where they may diverge again). This works by updating your working copy to a particular state and then setting the branch tag.
How can I achieve something similar in Mercurial? I searched, far and wide, but there appears to be no way of moving only a few files/folders onto another branch.
In my case some historical branch received some updates that should now be moved onto the currently active branch (that was before the repo was converted from Subversion to Mercurial). Is there any method that retains the history of these files/this folder? Or would I have to re-introduce the current state of these files to the other branch (i.e. start from scratch)?
Side-note: there are several hundred conflicting changes between the tips of both branches. That's why I'm looking for an alternative to full-fledged merging between the branches (which would also be a problem because one of the branches would cease to exist after a merge).