RE: Add option to git to ignore binary files unless force added
From: Randall S. Becker <hidden>
Date: 2018-05-17 12:37:30
On May 16, 2018 11:18 PM, Jacob Keller
On Wed, May 16, 2018 at 5:45 PM, Anmol Sethi [off-list ref] wrote:quoted
I think it’d be great to have an option to have git ignore binary files. Myrepositories are always source only, committing a binary is always a mistake. At the moment, I have to configure the .gitignore to ignore every binary file and that gets tedious. Having git ignore all binary files would be great.quoted
This could be achieved via an option in .gitconfig or maybe a special line in.gitignore.quoted
I just want to never accidentally commit a binary again.I believe you can do a couple things. There should be a hook which you can modify to validate that there are no binary files on pre-commit[1], or pre- push[2] to verify that you never push commits with binaries in them. You could also implement the update hook on the server if you control it, to allow it to block pushes which contain binary files.
What about configuring ${HOME}/.config/git/ignore instead (described at https://git-scm.com/docs/gitignore). Inside, put:
*.o
*.exe
*.bin
*.dat
Etc....
Cheers,
Randall