version control on large files

后端 未结 5 958
温柔的废话
温柔的废话 2021-02-07 18:43

We happily use SVN for SCM at work. Currently I\'ve got our binary assets in the same SVN repository as our code. SVN supports very large files (it transmits them \'streamily\

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-07 18:52

    Please be very aware that it is almost impossible to merge binary files! At least automatically. At least I've never heard of a program that supports three-way merging on a binary format. Let alone conflict resolving.

    That's why most asset management tools don't have branching, since it makes little sense since you can't merge again. Locking and linear history is better. If you want to "branch", then make a copy of the file with history.

提交回复
热议问题