3

我想要一种从某个日期从 TFS 中找到一组不同的更改文件的方法。从谷歌搜索我找到了这篇文章

http://blog.hackedbrain.com/2009/04/01/getting-a-distinct-list-of-changed-files-from-tfs-using-powershell/

在那篇文章中,作者使用了 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

我想知道的是

  1. 我怎样才能知道如何正确使用 -Version 参数?它是一个字符串,从文章来看,您似乎指定了一个日期范围,尽管帮助中没有这么说。是否有一个 msdn 参考站点,其中清楚地列出了这些东西?从谷歌搜索我找不到这样的网站。
  2. 一般来说,Powershell 高级用户如何了解如何使用这些 cmdlet?
4

1 回答 1

4

从谷歌进一步搜索我能够找到这个论坛主题

http://social.msdn.microsoft.com/Forums/en-US/tfspowertools/thread/f796a935-9760-4590-9335-9213be764f2f

从中我能够找到 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. 
于 2013-05-23T01:09:35.447 回答