Get Tfs Shelveset file contents at the command prompt?

前端 未结 6 1147

I\'m interested in getting the contents of a shelveset at the command prompt. Now, you would think that a cmdlet such as Get-TfsShelveset, available in the TFS Power Tools,

6条回答
  •  执念已碎
    2020-12-18 04:14

    tf status /shelveset:name
    

    will list out the content of the named shelveset (you can also supplier an owner: see tf help status).

    With the TFS PowerToy's PowerShell snapin:

    Get-TfsPendingChange -Shelveset name
    

    for the same information.

提交回复
热议问题