我想要一种从特定日期起从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
我想知道的是
答案 0 :(得分:4)
从谷歌搜索我能够找到这个论坛帖子
从那以后我能够找到tfs powertools powershell帮助文档,特别是来自文件PowerShellCmdlets.mht
其中有一个关于版本的部分,它更具描述性。它还举了几个例子,非常有用。
-Version <String>
Optional. Specifies the version of the items that you want to retrieve. You can specify a version by:
· Date/time (D2008-01-21T16:00)
· Changeset version (C1256)
· Label (Lmylabel)
· Latest version (T)
· Workspace version (Wworkspacename;owner)
If you do not specify a version, Team Foundation Server retrieves the most recent server version of the specified itemspec into your workspace.