我们在TFS中有3个主要的Repoes分支(根“PROD”,QA,开发“DEV”)我们有一些问题,我们的迁移文件有时在3个Repoes之间不同步。只是我想问一下,如果你要从dev合并到QA,我们应该从checkIn中排除迁移文件,只检查checkIn配置文件吗?特别是Dev和QA之间?
注意:有时候Dev会有很多子分支
答案 0 :(得分:1)
您可以创建 .tfignore文件。 https://msdn.microsoft.com/en-sg/library/ms245454(v=vs.140).aspx
######################################
# Ignore .cpp files in the ProjA sub-folder and all its subfolders
ProjA\*.cpp
#
# Ignore .txt files in this folder
\*.txt
#
# Ignore .xml files in this folder and all its sub-folders
*.xml
#
# Ignore all files in the Temp sub-folder
\Temp
#
# Do not ignore .dll files in this folder nor in any of its sub-folders
!*.dll
另一种方法是在TFS Power Tools中使用签入政策(禁止模式政策),如何添加签入政策请参阅MSDN中的link。