MATLAB: How to create a project reference to a specific revision of another project under SVN source control

controlMATLABsourcesvnversion

I have two projects under SVN source control. I would like to reference a specific version of one project from another. How can I do this in MATLAB?

Best Answer

This can be done by using SVN externals:
This will allow you to create a subfolder in your current directory that contains a reference to another SVN repository. You may also choose the specific revision when creating the SVN external.
After creating this subfolder, you can create a project reference to the project inside the created sublfolder.
Alternatively, you may check out the specific revision of the project to-be-referenced, then create a project reference to the checked out copy.