If you want to reset (or set) the UUID of an SVN repository to match the one you have at hand, you have two routes depending on the version of Subversion you are running.
While running 1.5 or above, you can simply run:
$ svnadmin setuuid /path/to/your-repository d7d214ed-3d1f-46fa-9087-da11a3c61c15
However, if you are below 1.5, you don’t have this luxury because the setuuid command is not available. The trick would be to load a fake-repository with a UUID specification via svnadmin load command.
$ cat - <<EOF | svnadmin load --force-uuid /path/to/your-repository > SVN-fs-dump-format-version: 2 > > UUID: d7d214ed-3d1f-46fa-9087-da11a3c61c15 EOF
Tags: administration, memory, svn, uuid