How can I list the last x
files I checked in to TFS?
views:
358answers:
4
+3
A:
In Source Code explorer, right click on the project and click View History.
Colin Desmond
2009-04-28 13:31:04
+2
A:
Install Team Foudation SideKick, you will have a lot of filter to search what you want inside TFS.
Nordes
2009-04-28 13:52:49
+2
A:
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.
Richard
2009-04-29 15:13:52
A:
tf history /user:myusername /stopafter:10 /recursive /noprompt $/
William D. Bartholomew
2009-05-28 10:07:59