在Visual Studio中,可以从与现有标签关联的文件中创建新的源代码管理标签。
我如何使用tf.exe
在Powershell脚本中执行此操作?
答案 0 :(得分:0)
这可以通过/version
命令上的tf.exe label
参数来实现。
Documentation解释了/version
参数的格式应为L,后跟标签名称:
# Create an alias to tf.exe
Set-Alias tf "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\tf.exe"
$labelName = "New label"
$labelComment = "Comment on new label"
$previousLabelName = "Nightly Build"
$sourceFolder = "C:\Folder\Containing Source\"
tf label $labelName $sourceFolder /comment:$labelComment /version:L$previousLabelName /recursive /child:Replace