I have a repository I will call 'subset' which was cloned from another repository I will call 'full'. I deleted many files in subset using 'hg rm'. I now need to pull changes to the files remaining in subset from full, but I don't want to restore any of the files I deleted. If I do a pull followed by a merge, the merge will interactively ask me for each deleted file that was changed in full if I want to use the changed file or leave it deleted. Is there any way to automatically leave all deleted files deleted and save myself a repetitive stress injury?
As a side note, one time fixes (like using hg convert on full?) won't fly because both the full and subset repositories are being actively worked on, at least for now.