简体   繁体   中英

How do you find all the files added to a visual studio project and checked in to TFS from a point in time?

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM