tags:

views:

35

answers:

3

I have a application in Subversion and I want to migrate it to TFS with all the history records. Is this possible?

A: 

Yes, using the TFS Integration Platform (last I checked it did require a good deal of setup and scripting), or a commercial tool (such as this).

driis
A: 

I'll second what @driis said. You basically have to iterate through the history of each file in the source system, then do an add + checkin of each file. Depending on the size of your old source repository, and the amount of history, this can be daunting.

We used the TFS Integration platform when we migrated from StarTeam, and made a conscious decision to migrate tip revision only. The migration of tip took on average 24 hours each time we ran it. We also ran into a number of encoding issues and missed files that needed to be resolved during the migration process.

If you have a lot of source, My advice would be to figure out a point in time of history that you want to migrate from, and ignore all history prior to that point, unless you have regulatory reasons for maintaining that history back to the beginning.

Robaticus
A: 

NO, you cannot. Here is the reason and migration tool from svn 2 tfs from codeplex. http://svn2tfs.codeplex.com/ http://visualstudiogallery.msdn.microsoft.com/en-us/5a8d1703-7987-4081-ba2f-9d0b68b0ed3e

bmn