Here's my use case: I commit PNGs and other stuff in my Git repo. I would like to apply a specific process to every PNGs I would like to commit and this is the result of the process I finally want to commit (the potential modified PNG).
At the beginning I thought about a hook (like a pre-commit
) but it's a little weird because the process will change the file so I will need to re-add it! And according to what I read, there is no pre-add
hook (or something like that).
May be a solution is to create a git alias ? But I don't want to change - too much - the way people work, I'm searching for a smooth and transparent way.
If you have a clue... even if the clue is to change my process idea.
You may want to consider a smudge & clean filter, with the clean
being applied during the git add, and the smudge during checkout. These can be allocated by file type. Look at the 'git attributes(5)' man page and Git SCM book : Git Attributes.