I dumped my repository
svnadmin dump repos > repos.dump
then I loaded it on the new machine
svnadmin load newrepos < repos.dump
and when finished the new repository is missing the last few hundred revisions.
Can I inspect repos.dump to see if it is missing the revisions? Can I dump the missing revisions and load them onto the new repository? Or, do I have to start over from scratch.
Starting from scratch would be a pain since the repository is 3GB and I have to grab it across the Internet at moderately low speeds!
EDIT: SOLVED - OPERATOR ERROR!
So, I forgot that I had already migrated the repository once (from account1 to account2) and and I never removed the account1 repository. I have a bash function to quickly ssh into my remote accounts and it logs me into account1 by default (which I wasn't thinking about) and since I saw the repository I figured everything was fine and hence sent the dump to account3 (again using an alias so that I didn't notice that I was in the wrong account).
Now, I'm going about putting the username for the account in bright red in the terminal, and I'm caching old repositories rather than letting them lie around. And, I'm taking out the default user aspect of my profile hack.
But, I was able to use --incremental to transfer the missing revisions to the new location. So, all the advice still helped.