On Wed, Feb 16, 2011 at 2:45 AM, Carl Jokl <[email protected]> wrote:
> It seems like all the cool kids are using Git these days. I am feeling > behind the information curve. I have a number of projects of mine > which are stored on my own private home server in a subversion > repository. I am currently the only one manipulating the projects. Is > it worth migrating my code out to GitHub? Yes, although you have two choices: either convert your private SVN repositories into private git repositories, or put them on a public site such as github. FYI, github will automatically import public SVN repositories, and it preserves the entire history doing so (the import operation works great in my experience). You will have to make your SVN repositories available publicly, though, which might not be an option for you. As for the learning curve, I recommend against using a SVN wrapper: just bite the bullet and learn git directly (or whatever DVCS you end up setting with). There is no shortage of tutorials, as this discussion has shown, but if I were to recommend one resource, it would be the free "Professional Git" book. -- Cédric -- You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
