How do you get a list of all new files added to a visual studio project and checked in to TFS? I've tried using TFS sidekicks and view history, but they only show changesets which you have to open up to see the details. I'm simply after a list of new files in a particular branch. Thanks
views:
26answers:
1
+1
A:
Powershell version.
Get-TfsItemHistory "$/Project Name" -r -all -version D06/01/2010~ | Select -Expand Changes | Where {$_.ChangeType.Tostring().contains("Add")} | select-tfsitem | fl Path
I believe this will require the TFS Power Tools to work.
Robaticus
2010-06-15 19:43:11
awesome, thanks. I just had to add -server to the options
TheImirOfGroofunkistan
2010-06-15 20:34:55