作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是TFS的新手,试图获取所有TFS工作区及其在PowerShell上本地计算机上的待更改以进行管理。
我知道您可以使用以下方法获得工作区:
tf vc workspaces
tf vc status
最佳答案
您可以使用以下PowerShell脚本来获取每个工作区的未决更改:
#Set-Alias tf "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe" #For VS 2017
Set-Alias tf "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\TF.exe" #For Visual Studio 2015
Write-Host "Workspaces in current local machine:`n"
tf workspaces
Write-Host "`n`nPending changes for each workspace:"
ForEach ($workspace in tf workspaces | Foreach {"$(($_ -split '\s+',2)[0])"} | select-string -Pattern 'Collection:|Workspace|""|----------------' -NotMatch )
{
Write-Host "Workspace Name:" $workspace
tf status /workspace:$workspace
Write-Host `n
}
关于powershell - TFS获取在PowerShell上有待更改的工作空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52655505/
我是一名优秀的程序员,十分优秀!