Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 SVN 作为协作框架的后端。也就是说,我想手动处理所有更新,即:没有自动合并,没有自动更新。
因此,如果更新带来以下变更集:A file1 D file2 U file3 G file4
我想手动处理更新和自动合并。
我知道这可以通过使用非交互式标志或将文件标记为二进制文件在 subversion CLI (for linux) 中实现,但我在 pysvn.Client 模块中没有找到这个选项。
有什么想法吗?
我通过添加 mime-type application/octet-stream 的 prop 解决了这个问题。这样 svn 将绕过上下文合并功能。