0
votes

I have my Visual Studio C# source code inside Microsoft Azure - Visual Studio Online (VSO), which is basically Team Foundation Server (TFS) 2013 in a Cloud. The Project was created using Microsoft Visual Studio Scrum 2013.3 Process Template.

I need to change process template from current (Scrum) to native Microsoft Visual Studio Agile 2013.3 Process Template.

Currently I do have only source code inside VSO and need to preserve all versions/check ins, with date/times and owners for whole team, there are NO any work items (tasks, bugs etc.)

One solution is to open a new Project inside VSO with Agile template, however how to migrate my code? or how to make simple / easy changes to current VSO project to change process template?

1

1 Answers

1
votes
  1. Create a new project and branch your code to the new project. The old project must remain to maintain history
  2. use the TFS Integration tools to replay history against the new location.
  3. (recommended) Switch to Git and use Git-TF to pull the history into git.
  4. check out the tip and check into the new project.

The only option here that adds future value is to move to Git. Once there your history will be forever portable.