Reputation: 127
I have a file named Branding.ini in the following folders. The content of the file is same in the two folders. Is it possible to refer a copy of the same in the two folders, So that if one file is modified, the same is reflected in the other folder?
svn/ICEConnect200/trunk/Source/Application Files/Bin/Licensing/32 Bit/ASWorx svn/ICEConnect200/trunk/Source/Application Files/Bin/Licensing/64 Bit/ASWorx
What is the best mechanism to address the situation?
Upvotes: 1
Views: 733
Reputation: 15525
The answer to your question depends on the version of Subversion you are using on the server (and client). So these are the 2 answers:
svn:external
, you will find documentation here.svn:external
and documented here. Search for the part that begins with Subversion 1.6 brings another improvement to externals definitions by introducing external definitions for files.
So you can then store your files you want to share in some part of the repository, and link to that file from another part then. You should decide if you want to use one of the 2 locations you have as the source, and the other as the target.
If you have the file external from the head, you are even allowed to change any location, and commit it. After that (and an update), your new version is visible at all locations you reference it.
Upvotes: 2