Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: version control

by disciple (Pilgrim)
on May 18, 2005 at 16:53 UTC ( [id://458294]=note: print w/replies, xml ) Need Help??


in reply to version control

I agree with pboin. Using any kind of version control is better than no version control.

Even manually archiving your files is better than nothing. I used this option when contracting for an organization who would not install any version control software and would not let us install any software on our dev machines. So I wrote a script that compressed all the projet files. I ran it at least once per day.

I have also used Visual Source Safe, and this too is better than nothing. I would say however that it's support for branching and merging is very limited. It also suffers from frequent database corruption and things get worse when your repository reaches 2gb in size.

I recently converted my shop to SVN. My reasons for picking SVN are as follows:

  • It is free.
  • It runs on Windows.
  • There is a large community of users from which you can get support.
  • There are many client tools, however for Windows TortoiseSvn is probably the best.
The same can be said about CVS but SVN sports many enhancements over CVS such as:
  • Atomic commits.
  • Cheap copying (which includes cheap branching and tagging since they are copy operations)
  • All files committed in one operation are given the same revision number. (some don't like this, but I do)
  • Versioning of file properties.
  • Versioning of directories.
  • Built in move and rename operations. (rename is actually the same as move)
  • Apache modules for remote HTTP access.
  • Apache modules for directory security.

The install and configuration of SVN and Apache on a WinXP box was straight forward. I purchased the book "Pragmatic Version Control: Using Subversion" and it details step by step what you need to do in Appendix A. This information is also available in the free online book: http://svnbook.red-bean.com/en/1.1/index.html

So in short, define your needs and choose a system that meets your needs. If you have a hard time making a decision after that, then I would choose SVN. Unless your needs are greater than SVN can support (which is unlikely unless you are a huge shop), I don't think you can go wrong with that choice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://458294]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (2)
As of 2024-04-26 04:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found