如何使用Get-TFSItemHistory TFS Powershell命令获取Checkin Notes

时间:2013-05-20 11:14:14

标签: powershell tfs tfs-power-tools

我正在尝试使用TFS PowerShell命令行实用程序在特定日期之后获取变更集详细信息。 我需要特别是CodeReviewer的签到备注字段。我能够正确地获得其他字段。但CodeReviewer始终是空白的。我没有在此命令中正确访问它。 :(

任何指针都会非常有用!

$tfsServerString = "server string"
$tfs = Get-TfsServer $tfsServerString
Get-TfsItemHistory $/folderPath -Server $tfs -Version "D15/04/13~" -includeitems `
        -Recurse  | 
    Select CreationDate, ChangeSetId, Committer, CodeReviewer, Comment `
        -exp WorkItems |
    Format-Table  CreationDate, ChangeSetId, Committer,CodeReviewer, `
        @{n='WorkId'; e={$_.Id}} , Comment -Wrap >
    C:\Status\WithID.txt

0 个答案:

没有答案