OK, so I have started a contract where they are using (gulp) Visual SourceSafe and are looking to move to something better. I have recommended Git. I stumbled across vss2git, which looks useful for migrating from VSS. Has anyone used it?

Many thanks!

link|improve this question
Without wishing to be awkward, GIT is a poor fit for a Windows based organisation (the tools aren't quite there yet) and huge leap for one used to VSS. Nor, for all its advantages, is DVCS without issues of its own. I absolutely applaud moving them forward (to TFS, SVN, Mercurial, GIT or whatever). – Murph Dec 16 '09 at 11:28
1  
I think the tools are less of a problem than the prevailing mindset of a lot of Windows devs - if you feel comfortable in a bash shell, then you have all the tools you need with Git Bash! Ultimately, anything is better than VSS. Subversion is ok, and I've used it for years, but it doesn't exactly make branching/merging easy. – Radicalise Dec 16 '09 at 16:43
Branching is adequately trivial in SVN under windows (allowing that I use TortoiseSVN) - I'm not sure I'd want it to be much easier, merging is not exactly hard either (its mindset that's the issue) and much better since 1.5. Really however its a question of finding the appropriate tools for the environment as a whole rather than pushing your choices because you're comfortable with them (not to say that they're wrong - or mine are better - just to suggest that it needs to be viewed from a couple of steps back). – Murph Dec 16 '09 at 18:43
feedback

3 Answers

up vote 2 down vote accepted

Well there are not many commits, and the project description says it was developed initially for the creator's company, so it probably hasn't had a lot of widespread use.

Having said that, it would be worth giving it a trial run on a copy of your VSS database. If it works then great, if not then maybe you can work on the code a bit or contact the author for help/suggestions.

link|improve this answer
1  
OK, good points, thanks. I'm hoping to convince them that their version history isn't worth bothering with, but, since that probably won't work, then finding a way to migrate the history will be important - the last thing I want is to have VSS hanging around. – Radicalise Dec 16 '09 at 11:19
feedback

I'm the author of vss2git. If your version history doesn't involve lots of actions unique to VSS, like shares and archives, your repository should migrate without problems. I've made a number of fixes in those areas based on feedback from other users, so there's a reasonable chance of success even if it does.

I should point out that the number of commits to the project on Google Code isn't quite indicative of the amount of refinement it has undergone; much of the development has been versioned in a private Git repository, with only releases pushed to SVN. However, I'll reiterate what others have pointed out: Always run vss2git on a copy of your repository. The files are opened read-only, but you don't want locking issues when another user tries to update the repository in VSS leaving it in an inconsistent state.

As for Git on Windows, it works fine these days (I use msysgit), even for developers without a Unix background. (My Windows-only Delphi coworkers picked it up without a problem and seem to love it.) Of course, if you have developers allergic to command-line usage and that demand GUI integration with various IDEs, you might be better off with SVN. You'll lose the awesome speed and flexibility of a DVCS, but SVN has more mature integration. And supposedly SVN branching is no longer as painful as it once was.

link|improve this answer
feedback

Apparently vss2git will not convert archived content. Our database was corrupted beyond repair a couple of years ago, so we archived and restored from a backup to go forwards with a smaller and simpler database. Vss2git works, but the git repository does not contain history before the restore.

link|improve this answer
1  
Other people have migrated archived and restored content. If you can reproduce the issue on a VSS repo you're willing to share, you should report the issue on the vss2git mailing list. – Trevor Robinson Jan 5 '11 at 20:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.