Managing large binary files with Git

后端 未结 12 1021
不思量自难忘°
不思量自难忘° 2020-11-22 05:47

I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:

12条回答
  •  余生分开走
    2020-11-22 06:36

    Have a look at git bup which is a Git extension to smartly store large binaries in a Git repository.

    You'd want to have it as a submodule, but you won't have to worry about the repository getting hard to handle. One of their sample use cases is storing VM images in Git.

    I haven't actually seen better compression rates, but my repositories don't have really large binaries in them.

    Your mileage may vary.

提交回复
热议问题