.gitignore all binary files declared by .gitattributes

260 Views Asked by At

What if .gitignore let's you define a pattern basically saying ignore all files considered as binary files? I mean without adding each pattern, because that are too many lines, but instead something like binary, similar to what .gitattributes let's you define.

Basically I would like:

  • ignore all files by default, which are considered as binary as auto-detected by git and as specified by .gitattributes
  • allow specific binary files only, by allowing them explicitely with .gitignore as usual

I did not yet found any hint that something like this is possible. Does somebody knows more?

1

There are 1 best solutions below

0
On

This is not possible.

As stated in the gitignore documentation

Each line in a gitignore file specifies a pattern. When deciding whether to ignore a path, Git normally checks gitignore patterns from multiple sources, with the following order of precedence, from highest to lowest (within one level of precedence, the last matching pattern decides the outcome)

Therefore it is not possible to ignore files by their kind


A workaround to this could be to define a pre-commit script that checks if there are binary files in your commit and exits with a non-zero code so that you won't be able to commit when binary files are present in the commit.

You could check each file present in the commit and see if it is a binary with this command

file --mime <commit-file> | grep binary