vote up 1 vote down star

I am in the process of moving from VSS to SVN and I'm not sure how to share files in SVN.

Basically we have the following structure in VSS

$MOSS
  - Components
    - ComponentA
      - bin
    - ComponentB
      - bin
  - GAC Mirror

GAC Mirror holds a shared copy of all the Dlls from the bin folders of the components to allow for easy copying to the GAC.

In VSS all you do is drag the Dll from the bin folder to the GAC Mirror folder and it works it's life out.

How would I do this in SVN?

Thanks in advance.

flag

67% accept rate

4 Answers

vote up 4 vote down check

Is svn:externals what you're after? http://svnbook.red-bean.com/en/1.0/ch07s03.html

link|flag
Can I link several folders to one doing this? – Arry Oct 30 '08 at 11:14
It doesn't look like it :( I just tried setting up two different SVN projects as externals in my "main" project's shared folder and only the second external referenced project was copied down. – Sprogz Oct 30 '08 at 11:48
This should work - you need to have a single svn:externals property defined with multiple relative paths that map to absolute repository urls. See the externals section referenced above. – Ken Gentle Oct 30 '08 at 12:04
I only need it to work in one direction and thus this is perfect for me. I guess I am copying rather than sharing in VSS. – Arry Oct 30 '08 at 16:44
vote up 0 vote down

I don't believe SVN can not do this:

I am trying to do the following:

SVN HEAD
----->PROJ 1
---------->SQL
--------------->ABC.pkg
--------------->DEF.pkg
----->PROJ 2
---------->SQL
--------------->DEF.pkg
----->Database Source Backup
---------->SQL
--------------->ABC.pkg
--------------->DEF.pkg


There has to be a solution to this: I want to be able to update the package in one project (PROJ2->DEF.pkg) and it should reflect in other locations, and when I look at the history of the file, I should see what was changed regardless of the location from which it was change i.e. only 1 file is stored in svn but shown in multiple locations.

Will externals take care of this within same repository? How about creating symbolic links? If there is no solution, can we ask for a modification to svn somewhere? Please comment.

-Ims.

link|flag
If this is a question that needs an answer, you should ask it, not add it as an answer to this question. – crashmstr Sep 23 at 18:30
vote up 2 vote down

I second Rick on this. To me, the whole concept of "sharing" (= having the same file occur in two places at checkouts) is weird.

I guess each versioning system has its own mindset implicitly attached to it. I've tried Perforce and I've stayed with Subversion. Bringing your projects to it without changing the mindset and maybe workflow may be flawed, though.

The Book on svn is a worthy read, to get some of the mindset submerged before doing the plunge. You can select some sections only, you don't have to read all at once.

link|flag
+1 Very true. Shoehorning an existing project layout into any VCS without any changes will often cause you to do things in the wrong way. – JesperE Oct 30 '08 at 14:52
vote up 1 vote down

We had the same problem. The simple answer is that you can't share files in SVN - in the end we had to restructure our directories and use batch files.

e.g. for source code files that were shared, we moved them to an Include folder, and have all the projects reference that folder.

For binary files that need to be copied to more than one location we store them just once in SVN, and then use batch files to copy them across to the target locations on each developers machine (or also on the build machine).

link|flag
I'm in the process of selling the move to SVN and this will not help my cause, sod. – Arry Oct 30 '08 at 11:03
It was still worthwhile for us to make the change because SVN is faster, more robust, has better support for offsite users. Perhaps you should try and emphasise the other good points. Also the optimistic commit strategy improves productivity (versus the locked file checkin/checkout of VSS). – Rick Oct 30 '08 at 11:22
Arry, shared files is poor in VSS. The biggest problem is that once you've branched a folder, all shared files in there get branched too so you have to go through deleting them and re-sharing. The 'common' folder is a good alternative. – gbjbaanb Nov 12 '08 at 14:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.