I am trying to migrate from Subversion to Mercurail (Hg). For that process I use hg convert
command. I want only the newest revisions that are a year older to be migrated to Mercurial. I tried using the below command
hg convert --rev 4234 http://mysvn/myrepo/trunk
But the above command migrates only the revisions that are older than 4234 (4233, 4232,..... ,1 ,0)
How to get migrate to mercurial from HEAD
to specified revision.