How do I manage large art assets appropriately in DVCS?

前端 未结 5 1127
孤城傲影
孤城傲影 2020-12-22 17:43

Is there any good way to handle large assets (i.e. 1000\'s of images, flash movies etc.) with a DVCS tool such as hg and git. As I see it, to clone repositories tha

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-22 18:00

    Thoughts, no experience: I would indeed seperate code from data. Assuming that there is a set of images that belongs to the application, I would just keep that on a centralized server. In the code, I would then arrange (through explicit coding) that the application can integrate both local or remote assets. People contributing can then put new images in their local store at first, integrating it with some kind of (explicit) upload procedure into the central store when required and approved.

提交回复
热议问题