问题描述
我的一个项目,是在结合工作TFS,这个项目给我的文件夹登录。
I am working on a Project that is bind in TFS, this project gives me a folder Log.
当我执行我的项目,并做一些测试才产生Log文件夹文本文件和商店。
When I execute my project and do some testing it generates text files and store in Log folder.
之后,当我尝试在这些文件中的文件被登记为TFS中的一个新的文件。检查
After that when I try to check in files those files are checked in as a new file in TFS.
我想TFS以排除这些文件。在那里我存储的临时文件夹是:
I want TFS to exclude these files. Folders where I store temp files are:
-
\\网页\\ ErrorLogs
-
\\网页\\ TEM preports
\WebPages\ErrorLogs
\WebPages\TempReports
有没有TFS的设置,我可以说,它不包括在TFS这个文件夹,但如果从服务器获取最新的?
Is there a setting in TFS where I can say it not to include this folder in TFS but Get latest from server if any?
是否有可能建立一个入住-政策这个问题?
Is it possible to create a Check-in-Policy for this problem?
推荐答案
使用故宫模式策略包含在TFS电动工具
Use the Forbidden Patterns Policy included in the TFS Power Tools
下面的正则表达式prevents 锁
被签入的文件:
The following regex prevents suo
files from being checked-in:
\.((?i)suo$)
下面的正则表达式prevents 斌
, OBJ
和调试$被签入C $ C>文件夹:
^\\(bin)|(obj)|(debug)\\$
这篇关于从增加临时文件preventing TFS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!