Reputation: 52
Recently we did POC to work java code with TFS by add on tool,now we are planing to migrate java code to TFS 2017. is any way without third party tool we can migrate SVN to TFS 2017.
Upvotes: 0
Views: 4335
Reputation: 51093
Seems you need to migrate a SVN repository to TFS. If you mean you want to directly use some official SVN or TFS tool to do the migration. I'm afraid there is no such thing for now. You need to use some other tools. There are two types of version control in TFS: TFVC and GIT.
For GIT, there are plenty of free tools such as git-svn tool and subgit that will help in migrating Subversion to a Git repository. Once you've created the Git repository locally you can then push it to remote GIT repo hosted by TFS.
For TFVC, one simple option would be to first migrate SVN to GIT, and go from GIT to TFVC using either git-tfs or git-tf.
For detail ways how to do this you could refer below tutorials:
Besides you could also directly build the source code in SVN repro through TFS build system.
Upvotes: 4