Well, there are two ways that I know of.
Note. Please create a backup copy or clone for experiments, I will not take responsibility for any lost work.
First, if you have enabled the MQ extension, you can disable it. I only know how to do this using TortoiseHg, but I will find the right commands after posting here.
To do this, you run the following command:
hg strip 26
Secondly, you can create a new clone locally from only some change sets , again I only know how to do it using TortoiseHg .
To do this, you run the following command:
hg clone SOURCEDIRECTORY CLONEDIRECTORY -r35
Then, from your clone, after verifying that it contains the changes you need, you click on the target repository.
Regarding the answer to what you were supposed to do, you could remove your original clone and re-clone from the server to get a clean clone containing only 25 changeset, but of course you could use the strip command to get rid of then redundant sets of changes.
source share