I set up some git filters in order to preprocess certain files (in my case IPython Notebooks) before committing them. To be more exact I'm following these instructions: https://stackoverflow.com/a/20844506/578770
This works fine and the files are correctly filtered if I commit my changes or if I review the change using the command line "git diff ".
However, if I'm reviewing my changes using meld, the files are not filtered. I tried several way to set up meld as a diff tool for git:
- by calling git difftool
- by calling meld from a custom script
But none of the solutions I've found for using meld as a diff tool enables me to view the change of the file after the git filters is applied.
Anybody has an idea on how to achieve this?