You guessed it, large files will do what you need. To merge binary files, you can configure a merge tool if one exists for your file type . Something like that:
[merge-tools] mymergetool.priority = 100 mymergetool.premerge = False mymergetool.args = $local $other $base -o $output myimgmerge = SOME-PROGRAM-THAT-WILL-MERGE-IMAGES-FOR-YOU [merge-patterns] **.jpg = myimgmerge **.exe = internal:fail
In general, merging non-text things will always be a pain using the source control tool. Digital Asset Management applications exist to make this less painful, but they are not decentralized or very enjoyable to work with.
source share