Search Results

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. …
8
votes

Favorite option for source control under $70?

Subversion, hands down. It's free and it's free softw …
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 …
16
votes

Comparison between Centralized and Distributed Version Control Systems

From my answer to a different …
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 …