chilly
chilly

Reputation: 194

Export changeset from TFS?

Before we migrated to Team Foundation Server we had SVN to manage our source code, with TortoiseSVN as client software.

Back then, when we completed a new feature in the project, you could choose the revision where you started with the feature and compare it with head revision.

Then you could export all the files that changed, with maintained folder structure. And then we could upload only the affected files and folders to production environment.

Is it possible to do something similar to this with TFS?

Upvotes: 3

Views: 3682

Answers (1)

Edward Thomson
Edward Thomson

Reputation: 78623

One avenue to explorer is writing a script around the "get changeset" functionality in the Team Foundation Server Power Tools. This will allow you to get all the files in a specific changeset. You could iterate over the changesets between the original changeset and the changeset to push to production, running getchangeset for each, and then push the results up.

Upvotes: 2

Related Questions