Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website and Server Administration Forum


You are currently viewing our Website and Server Administration Forum as a guest. Please register to participate.
Login



Reply
Is SVN subversioning overkill for freelance coders?
Old 06-21-2010, 06:54 AM Is SVN subversioning overkill for freelance coders?
TWD
TWD's Avatar
King Spam Talker

Posts: 1,190
Trades: 0
I've been hearing a lot recently about SVN and Git.

When I make changes to code I rarely overwrite the old file directly.
Usually I rename the existing file as something else e.g. OLD_foobar.php
and then copy a new version of foobar.php

I was wondering whether using SVN is using a sledgehammer to crack
a walnut or is it worthwhile for a solo freelance guy.

I suppose in the near future there might be some requirement to
bring other coders in to work on stuff.
__________________
RATE-MY-WEBSITE.com "Free website reviews by real web professionals"
Please login or register to view this content. Registration is FREE
TWD is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-21-2010, 07:18 AM Re: Is SVN subversioning overkill for freelance coders?
Phunk Rabbit's Avatar
Ultra Talker

Posts: 255
Name: John Nerush
Location: Milton Keynes, UK
Trades: 0
I use SVN for all my sites, I like it from an organisation tool even if the overall process is a little ott for a one man band.

Its great for keeping versions/backups and unless your SVN'ing massive sites space isnt going to be an issue.

I guess it comes down your personal work flow and how you like to organise.
__________________

Please login or register to view this content. Registration is FREE

Learn professional skills from professional people, from $6.50 a month.
Phunk Rabbit is offline
Reply With Quote
View Public Profile Visit Phunk Rabbit's homepage!
 
Old 06-21-2010, 07:43 AM Re: Is SVN subversioning overkill for freelance coders?
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
I used CVS before using svn, and I must say that I'd never work again without a source control tool.
It saved my a s s more than once.
Quote:
Usually I rename the existing file as something else e.g. OLD_foobar.php
If your modifications touch only 1 file, it works. But when it touches interfaces, db adapters, class, stored procedure/triggers and rendering, you may end up with a dozen of modified files to adapt that one modification.
Branching is way easier to maintain in that case.

And when you have a regression, looking at the differences is so much more easy when you can do a diff between the 2 versions...

I even have put my server configuration under svn.
For those times where you accidentaly overwrite your dns zone with an empty one.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 06-21-2010, 06:59 PM Re: Is SVN subversioning overkill for freelance coders?
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
I haven't used it myself. I'm pretty careful after making some big mistakes early on in my freelance life. However I agree with both John and Thierry that it's something worthwhile to use. It's one of those things I've been meaning to try and never get around to actually trying. The only downside I see is there seems to be something of a learning curve in the beginning, which is hardly much of a downside. I guess I haven't gotten past that curve, though my guess is it's not all that hard to get past.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 06-22-2010, 08:28 AM Re: Is SVN subversioning overkill for freelance coders?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,390
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
I have never used a kind of versioning tool. I did try SourceSafe a long time ago and got so p----d off with having to create a new file simply because I corrected a spelling error by one letter.
Now maybe they have improved since then but heyho.

I have my own routine.

Major changes to a project and I will make a copy of the entire project folder at the start of the working session.
Minor code changes, copy & paste the line/function/block of code and comment out the earlier code or rename the old function/class.
and I will add a note to the module change list.

Changes to spellings or changing the text, just gets done.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-27-2010, 12:52 AM Re: Is SVN subversioning overkill for freelance coders?
TWD
TWD's Avatar
King Spam Talker

Posts: 1,190
Trades: 0
Looks like I am going to have to learn either SVN or Git.

One developer advised me that Git is much better and that is the
reason a lot of high profile projects (Apache, JQuery, Ruby, Drupal) are using it.

Anyone here disagree that it would be best to go with Git?
It seems to be the way everything is moving.
__________________
RATE-MY-WEBSITE.com "Free website reviews by real web professionals"
Please login or register to view this content. Registration is FREE
TWD is offline
Reply With Quote
View Public Profile
 
Old 06-27-2010, 10:36 AM Re: Is SVN subversioning overkill for freelance coders?
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
Quote:
One developer advised me that Git is much better and that is the
reason a lot of high profile projects (Apache, JQuery, Ruby, Drupal) are using it.

Anyone here disagree that it would be best to go with Git?
It seems to be the way everything is moving.
I'd rather say that in a worldwide distributed environment, GIT and non-centralized source repositories are better than SVN or CVS that are sever-centric.

In general, in enterprise with all the developers working in their wall, SVN is the usual enterprise choice.
In the open-source world, GIT is the traditional choice.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 06-27-2010, 07:45 PM Re: Is SVN subversioning overkill for freelance coders?
TWD
TWD's Avatar
King Spam Talker

Posts: 1,190
Trades: 0
Quote:
Originally Posted by tripy View Post
I'd rather say that in a worldwide distributed environment, GIT and non-centralized source repositories are better than SVN or CVS that are sever-centric.

In general, in enterprise with all the developers working in their wall, SVN is the usual enterprise choice.
In the open-source world, GIT is the traditional choice.
Thanks, that answer really helps clarify the issue for me. Cheers.
__________________
RATE-MY-WEBSITE.com "Free website reviews by real web professionals"
Please login or register to view this content. Registration is FREE
TWD is offline
Reply With Quote
View Public Profile
 
Old 09-03-2010, 05:17 PM Re: Is SVN subversioning overkill for freelance coders?
Novice Talker

Posts: 6
Name: Russell
Location: Conshohokcnock, PA
Trades: 0
Also throwing out there RCS, which I love. it's simple, portable, optionally keep revision history in the file... Git and SVN are sometimes too complicated for things like apache config files and such. RCS is a breeze.
ruru32 is offline
Reply With Quote
View Public Profile Visit ruru32's homepage!
 
Reply     « Reply to Is SVN subversioning overkill for freelance coders?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.38761 seconds with 12 queries