在哪里可以找到默认情况下TFS忽略的完整文件列表(如*.dll,*.log等)?我在GIT中看到它,但不是"本机"版本控件.我还看到很多链接描述了如何创建本地.tfignore并在那里写
# Do not ignore .dll files in this folder nor in any of its sub-folders
!*.dll
例如链接,但是如果系统上没有指定/存在自定义.tfignore,我在哪里可以看到预先定义的列表哪些文件将被TFS排除?
您可以参考路径下的"LocalItemExclusions.config"文件"C:\Users\youraccount\AppData\Local\Microsoft\Team Foundation\x.0\Configuration\VersionControl" folder and open".(可能有几个名为1.0,2.0,3.0的文件夹,您需要确保打开与您的TFS版本匹配的文件夹.)
您可以看到默认情况下会忽略这些文件夹和文件类型,并且它们在该文件中定义.
<Exclusion>bin</Exclusion>
<Exclusion>obj</Exclusion>
<Exclusion>*.exe</Exclusion>
Run Code Online (Sandbox Code Playgroud)