Serve Laurijssen
Serve Laurijssen

Reputation: 9763

List of changes from last year in one file

I've been asked to present a list of all changes made to a file in the last year with TFS2013. I have no clue how to go about this, is this possible?

Upvotes: 0

Views: 30

Answers (1)

Cece Dong - MSFT
Cece Dong - MSFT

Reputation: 31083

Many ways to achieve this:

1#

Right click the file and select Find-->Find Changesets, see the screenshot below:

enter image description here

Then choose Created date, and specify the date, Click Find, you'll see the list of all changes made to a file in the last year:

enter image description here

2#

Use History command:

c:\code\SiteApp\Main\SolutionA\Project1>tf history program2.cs /v:D1/1/2015~D12/31/2015

3#

Install Team Foundation Sidekicks, and open History Sidekick, you'll see all changesets for a file and export it to a .csv file.

Upvotes: 1

Related Questions