Jump to content
Tankbuster

SVN user switching to Git

Recommended Posts

Some years ago, (name drop alert) Soul Assassin said to me 'SVN saves lives' and he was absolutely right. It's helped loads.

 

But now I'm considering switching to Github as I prefer the slightly more public nature of it and because I'm keen to try something new.

 

I'm very much a basic level user of SVN, I've never done a branch, for example, so I was wondering if anyone had any thoughts about moving to Git for a new mission project.

 

The situation I want to avoid is this: In a couple of months time, I want to do something (as yet unknown) quite simple and elementary and fail miserably and some Git expert pipes up and says "Oh, no... you can't do that!" and makes me wish I stayed with SVN.

Share this post


Link to post
Share on other sites

If your question is something along the line "Could something not work in GIT which worked in SVN?" then no, this won't happen. SVN can seamlessly be imported into GIT.

 

The advantage of GIT over SVN is that you've got a local repository. That means, while with SVN you only had "Commit", GIT has "Commit" and "Push". Committing in GIT means committing it to a repository on your local PC. This is especially useful if you - for whatever reason - don't have a server connection. Only when you push your project, the stuff gets to the server.

 

I'm not aware of any disadvantages of GIT compared to SVN, I only know the advantages, which is why I use GIT.

Share this post


Link to post
Share on other sites

That was my underlying question, yes.

 

I wasn't aware of the difference between commit and push, so that's useful info.

 

Thanks for the reply. :)

Share this post


Link to post
Share on other sites

As a total noob to this stuff I found Git easy to work with and fairly intuitive... enough so I don't look the fool when someone says "grab the latest off of Github"  :P

Share this post


Link to post
Share on other sites

Thanks chaps - I've decided to switch to git for my new projects.

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×