在 tfs 2015 中移动子文件夹/区域路径
Moving a sub folder/ area path in tfs 2015
我的一个团队在团队项目下创建了一个新文件夹,并将其用作 tfs 2015 中的单独项目。
是否可以将该子文件夹项目移动到同一集合中的新项目?
提前致谢!
您可以使用 tf rename command 移动文件或文件夹的路径而不会丢失源代码管理历史记录。
tf rename "$/PROJECT/Sub folder/*.*" "$/NEW PROJECT/XX/"
Note: The results of this command are not reflected in the Team Foundation version control server until you perform a check-in
operation.
Required Permissions
To use the rename command, you have the Check out permission set to
Allow.
我的一个团队在团队项目下创建了一个新文件夹,并将其用作 tfs 2015 中的单独项目。
是否可以将该子文件夹项目移动到同一集合中的新项目?
提前致谢!
您可以使用 tf rename command 移动文件或文件夹的路径而不会丢失源代码管理历史记录。
tf rename "$/PROJECT/Sub folder/*.*" "$/NEW PROJECT/XX/"
Note: The results of this command are not reflected in the Team Foundation version control server until you perform a check-in operation.
Required Permissions
To use the rename command, you have the Check out permission set to Allow.