smartyollie
smartyollie

Reputation: 181

Given a TFS changeset, how can I find what work item(s) it is linked to?

It's easy to see what changesets are linked to a given work item. But is it possible, given a changeset, to find out what work item(s) it is linked to?

Upvotes: 3

Views: 4211

Answers (2)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41775

(From my Visual Studio 2017)

In "Team Explorer" click on "Source Control Explorer":

enter image description here

Click on this icon:

enter image description here

Put the Changeset number or search it:

enter image description here

Click on "Details..." (or double-click on the changeset):

enter image description here

Upvotes: 1

Rahul
Rahul

Reputation: 77936

If you have the changeset number then in TFS explorer in VS press CRTL + G and provide the changeset number and click OK. That will bring the change set in team explorer.

Then you can click on a folder/file and select view history which will show you the work items related to it. See view changesets for more information.

Also, check out this MSDN blog post Listing the work items associated with changesets for a path

Upvotes: 3

Related Questions