I have a github project where my application manages data in binary files. I want to have git automatically add these files in each commit and replace using the local version. All my binary files have a unique file extension that I specify and range from 60bytes to 10kb
How can I specify this behavior if possible?
edit 1:
I have two computers with git and have the same repository. I push my commits from one computer and the changelog shows that everything uploaded properly except my binary files. I used git pull on my second computer and both say that they are up-to-date however my binary files are not the same across these two devices
edit 2: