Efficient storage of binary files in a git repository

前端 未结 5 2145
傲寒
傲寒 2021-02-14 15:13

I would like to have a git repository that consists mainly of binary files.

I need to keep track of the changed, added and removed files to the repository, but I don\'t

5条回答
  •  终归单人心
    2021-02-14 15:53

    If you don't want to store the bins, than you could use a binary diff tool on the files, then commit the output into version control. Any text change log entries can then be entered in to the commit message.

提交回复
热议问题