我想要一种从某个日期从 TFS 中找到一组不同的更改文件的方法。从谷歌搜索我找到了这篇文章
在那篇文章中,作者使用了 get-tfsitemhistory cmdlet,带有这样的 -Version 参数
Get-TfsItemHistory “$/Foo/v1.1” -Version “D3/1/09~D3/31/09” -Recurse
通过查看 get-help get-tfsitemhistory -full,没有示例,我得到以下关于 -Version
-Version <String>
Specifies the version of the items for which to display revision history. By default, Team Foundation uses the
workspace version.
You cannot combine this option with the -slotmode option
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
我想知道的是
- 我怎样才能知道如何正确使用 -Version 参数?它是一个字符串,从文章来看,您似乎指定了一个日期范围,尽管帮助中没有这么说。是否有一个 msdn 参考站点,其中清楚地列出了这些东西?从谷歌搜索我找不到这样的网站。
- 一般来说,Powershell 高级用户如何了解如何使用这些 cmdlet?