• Forum
  • Lounge
  • Difference between Subversion and Google

 
Difference between Subversion and Google Drive?

Does Google Drive have version control features? If so which one is better Subversion or Google Drive? Thanks in advance.
I do not believe Google Drive has version control. AFAIK, that's not at all the purpose of it.
https://en.wikipedia.org/wiki/Revision_control

Look up git, as well as other version control software, like Subversion, Mercurial, etc.
https://en.wikipedia.org/wiki/List_of_Version_Control_Software

Formulate your own opinions about which is better for you and your work environment. Personally I and many others prefer git - it certainly works well for GitHub:
https://github.com/

But there will always be those who prefer other VCS because of some such reason that is relevant to them. Maybe it will be relevant to you too ;)
Last edited on
Thanks guys!, I appreciate the responses.
closed account (Dy7SLyTq)
i dont use it personally, but there are tons of git and svn clients on source forge
What do you mean by 'git and svn clients'? There is already an official client for each of both git and subversion, called 'git' and 'subversion', respectively.
closed account (Dy7SLyTq)
well, at least there were. one comes to mind like turtle svn, but i cant seem to find it on source forge anymore
It's TortoiseSVN, and they have clients for git and mercurial as well. I wouldn't recommend subversion these days. It was good compared to CVS but git and mercurial are much faster.
closed account (3qX21hU5)
One good graphic client for GIT that I have found and use daily is SourceTree which is free.

It is great for beginners just getting the hang of pushing/pulling, commits, adds, branching, ect. and also have some nice advance features for more advanced users.

It was made by the one of the original creators of Orge3D Steve Streeting and it works with Mercurial and Git.

I would definitely recommend checking it out. http://www.sourcetreeapp.com/
Last edited on
There's also SeeGit:
https://github.com/Haacked/SeeGit
It updates in realtime based on the state of your repo - great for seeing the effects of command line interaction.
I heard Subversion is great for beginners and students. Since I haven't used a version control before I thought I would give that one a go.

@naraku points that choosing subversion would be a bad idea. Is Git that much better for a beginner? or does it not matter?
closed account (3qX21hU5)
Neither of them are really that hard to learn. Just take a hour or two to get familiar with one and you should be fine. It is not like learning a programming language or anything.

That said subversion is dying rapidly and wouldn't be a good idea to start using it in my opinion. I would go with Git or Mercurial which provide a better version of Source Control then subversion does and are going strong and won't be gone anytime soon.

Edit: Here is a post that I think describes why not to use subversion pretty nicely http://www.altdevblogaday.com/2011/03/09/its-time-to-stop-using-subversion/ (Though a warning this article is a couple years old and most of the con's against Git have been fixed)

But ultimately the choice is up to you. Choose what you feel most comfortable with but do some research first.
Last edited on
@Zereo, great advice.

Wow, thanks guys. Don't know what I would do without you guys and this informative forum. Again, Thanks to all that responded.
If you plan on learning git, there's also this:
http://pcottle.github.com/learnGitBranching/?demo
@L B

does Git require command line interaction?
closed account (3qX21hU5)
No it doesn't there are plenty of GUI applications out there that can handle that for you like the ones listed so far or even github provides a windows and mac version of one. Here is a nice list of some http://git-scm.com/downloads/guis
Topic archived. No new replies allowed.