0
votes
What are the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
Distributed version control systems (DVCSs) solve different problems than Centralized VCSs. Comparing them is like comparing hammers and screwdrivers.
…
5
votes
What is the optimal way to organize shared .net assemblies in SVN?
What we did at our company was to set up a tools repository, and then a project repository. The tools repository is a Subversion repository, orga …
0
votes
How to access the current Subversion build number?
You want the Subversion info subcommand, as follows:
$ svn info .
Path: .
URL: http://trac-hacks.org/svn/tracdeveloperplugin/trunk
Repository Root: http://trac-hack …
0
votes
SVN and code shared between several projects
My recommendation for handling shared code (particularly with Java and .NET or a C/C++ library) is to use two sets of repositories: one for source code, and another for versioning released images. …
0
votes
Could not initilize the SASL library
The tutorial you referenced was for a much older version of Subversion, and may be missing steps. Nowadays, the fastest way to set up a Subversion server on Windows is to use …
0
votes
Check out a read-only copy of a file from Subversion?
You probably have some form of build automation (make, ant, etc.) for compiling. Why not add an 'update' step to your make file, that looks something like this:
update:
svn …
1
vote
Using the Subversion revision for the ClickOnce publish revision?
The way that I've done this in the past is to create a build file (either using MSBuild or NAnt) to automate my builds, used svn info --xml . to pick up the revision number and then st …
