Reputation: 635
In TFS 2010, using powershell
Get-tfsItemHistory $path -server $servername
returns the oldest changeset and not the latest changeset. Is there anyway to get the latest changeset Thanks Nate
Upvotes: 2
Views: 77
Reputation: 635
PS C:\Windows\system32> Get-tfsItemHistory $path -server $servername -All -recurse -stopafter 1 | select Owner ,
creationDate
That resolved my requirement
Upvotes: 1