vote up 0 vote down star

Why do I need to use a versioning system or repository? I code from scratch by myself and make web code changes along with database changes on reasonably large projects.

flag

75% accept rate
1  
duplicate. See: stackoverflow.com/questions/131282/… – Razzie May 15 at 10:40

10 Answers

vote up 9 vote down check

You don't have to do it - but I found that this makes developing much easier.

It helped me

  • to cut a lot of commented code out of my programs
  • to get back to an old version (find out why it worked with an older version and doesn't work with the current one)
  • with my backup strategy

After the learning curve I'm pretty sure you are going to like it

link|flag
2  
And to let me work on a branch (eg for a speculative development) while maintaining the trunk for the live system. – Colin Fine May 15 at 11:20
vote up 3 vote down

Definitely yes - I have often coded on my own in the past, and a proper versioning system has proved invaluable on countless occasions.

Also see Good excuses NOT to use version control

link|flag
vote up 0 vote down

Change history and labels (tags in SVN) will not hurt you anyway. The repository will also protect you againt accidential losses due to erroneous code edits.

link|flag
vote up 0 vote down

Probably because it'll offer you a versioning system which is often usefull, a backup of your application, a remote workspace to work with.

link|flag
vote up 0 vote down

Just to be on the safe side. Period.

link|flag
vote up 0 vote down

For when you write something new, realise it is a parade of epic fail, and then want to go back to the old version with a minimum of fuss.

Yes - it's very useful.

link|flag
vote up 0 vote down

Version management can be done in multiple ways, svn, zipfiles with state of date dd-mm-yyyy), hell, even copy of

I would recommend a version management tool like SVN/CVS/Sourcesafe because it helps you understand what you did when and why, and gives you more control over your code (go back, branch/merge etc)

link|flag
for a single developer a distributed source control system (Hg, GIT, ...) could be better because the repository is local and you don't need a server. – CaptSolo May 15 at 10:45
SVN can also work locally without an actual server; for example: nedbatchelder.com/text/quicksvn.html – Mark May 18 at 11:23
vote up 0 vote down

Of course. It will help you roll back to a previous version in case anything goes wrong :)

link|flag
vote up 0 vote down

Yes, you definitely need source control. It'll help if you need to go back to a previous version or accidently edit/delete files.

I'd say Continuous Integration wouldn't hurt either ... even for a one person project.

link|flag
vote up 0 vote down

It helps me at least in the following cases:

  • Feel safe, e.g. if I accidentally remove a file (shit happens) I can just restore it
  • Backups are easy to do

Anyway, all the answers say "yes", so, I guess you have already made a decision.

link|flag

Your Answer

Get an OpenID
or

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