Blankman
Blankman

Reputation: 266940

How can I list all files checked in by me in Team Foundation Server?

How can I list the last x files I checked in to TFS?

Upvotes: 2

Views: 3953

Answers (5)

Graham Laight
Graham Laight

Reputation: 4840

Login to your TFS server's web site and look at the changesets.

Upvotes: 0

William D. Bartholomew
William D. Bartholomew

Reputation: 744

tf history /user:myusername /stopafter:10 /recursive /noprompt $/

Upvotes: 3

Richard
Richard

Reputation: 108975

Using the TFS PS Snapin included with the TFS PowerToys1...

Get-TfsItemHistory "$/" -recurse -stop 50 -user "my-username" | % { Get-TfsChangeset $_.Changesetid} |select -expand changes | select -first 20

The -stop 50 in the first stage is to avoid every change ever being retrieved which will slow things down with a significant repository. Also note, this does not eliminate duplicates where the same file is part of multiple changesets.

1 Information here, here and download. Use the custom install to add the PSSnapin.

Upvotes: 3

Nordes
Nordes

Reputation: 2521

Install Team Foudation SideKick, you will have a lot of filter to search what you want inside TFS.

Upvotes: 2

Colin Desmond
Colin Desmond

Reputation: 4854

In Source Code explorer, right click on the project and click View History.

Upvotes: 1

Related Questions