Search Results

2
votes

What to do with multiple projects depending on the same source?

We've used svn:externals pointing to shared code in practice for a few years now. We have had some interesting problems with it that you should probably consider before using it though …
2
votes

How to synchronize SVN revision and version ressources of EXE/DLL files?

You might want to look into Subversion Properties and …
0
votes

Subversion .tmpl

Yup.. the .tmpl files are samples. You will have to roll your own under windows. I would recommend using something like Perl or Python over batch files though. …
0
votes

What Subversion distributions are suitable for an enterprise

We've been hosting behind apache 2.0.x for a few years now and I've been nothing but happy with it. We are using mod_auth_ssp …
3
votes

Mac Leopard - Can’t start Apache2 after building SVN1.6.2 from source

The problem is that Apple built Apache as a fat binary so it supports four architectures so it will only load modules which are built as fat binaries. You can use the …
2
votes

How to Connect SVN server in C++

You have a few options: Set up WebDAV and use HTTP. Use the …
2
votes

Using the tofu scale with svn

Use the standard trunk/, branches/, tags/ …
1
vote

SVN ‘unbranched’ files

You are correct in that there is no way to do file sharing in this sense. You might want to look into using svn:externals though. This would require that you split the source into separate director …
4
votes

Help in understanding SVN Externals

What you have to watch out for with svn:externals is that you need to explicitly specify the revision if you want something other than trunk. …
0
votes

How can I write a wrapper script to create an svn branch?

Take a look at the svncopy Perl script noted in this defect. It's a good start at what you need. …