What are some good resources and tips for migrating from SVN to GIT?
|
5
|
|
|
|
|
|
I think that the most important thing to understand about Git is the index (especially when used with Of course, there is also the Git SVN crash course (as mentioned by mk) and the Git Tutorial for some more general info. |
||
|
|
|
|
I've found
I find this primarily useful for performance improvement/testing, but also for cases when i find a bug and want to verify that my current WIP isn't responsible. Also if you're like me and use the git-svn bridge, then |
||
|
|
|
|
Easy Git is a really nice wrapper to git that makes git behave a little more like svn -- or, at least, it minimizes unexpected behavior. He's got a page that helps you make the transition here. Lastly, you can add |
||
|
|
|
|
Since branching is so easy and fluid in Git, I've found the GUI tools especially useful. Even the basic |
||
|
|
|
|
The PeepCode book "Git Internals" is a $9 PDF download that really helped me turn the corning in "getting" how Git worked. The Git Casts website looks very useful too. |
||
|
|
|
|
I thought that the git svn crash course was pretty helpful. |
||
|
|
|
|
I find that using new tools on real work is the most effective way to learn: After reading through some guides on Git and git-svn, clone an active SVN project with the git-svn bridge:
Then, you can play around with the various git and git-svn commands while you're doing your regular work. Since you'll already be familiar with the source code (it's your project, after all), it will be easier to learn the suite of Git commands without getting distracted by contrived examples. Play around with checking out, committing, branching, merging, and tagging to really get a feel for Git's capabilities. If you've done some productive work under Git, commit the updates back to SVN through git-svn:
For multi-user repositories, you can decide to stick with SVN as the central repository format, or replace SVN altogether with a "bare clone" of your local Git repository. |
||
|
|
|
|
I highly, highly, highly recommend the Git Internals PDF and podcasts from PeepCode. It costs $9 but it does an excellent job of describing how Git works from a fundamental level. Once you understand that, a lot of all the other pieces will make a lot more sense. Whether your moving to Git from SVN, some other VCS, or starting from scratch it's really useful to "get" how Git works under the hood. |
||
|
|
