TFS如何存储二进制文件
我没有找到答案的快速而简单的问题:
TFS 如何存储二进制文件?我知道,对于文本文件,它存储最新版本的完整内容并与其前身不同。这同样适用于二进制文件吗?
谢谢你!
Quick and simple question I did not find an answer for:
How does TFS store binary files? I know that for text files it stores the complete content of the latest version and diffs to its predecessors. Does the same apply for binary files?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。每次都会存储二进制文件的新完整副本。
更新。实际上似乎我对此有部分错误:-)。 TFS 确实存储增量二进制文件,但前提是它们小于
deltaMaxFileSize
配置值 存储在默认的 web.config 文件中值为 16 Mb。No. Each time, new complete copy of a binary file is stored.
Update. Actually seems like I was partially wrong about this :-). TFS does stores deltas for binary files, but only if they are smaller then
deltaMaxFileSize
configuration value stored in web.config file which have default value of 16 Mb.