When trying to create a path file like git diff master myfeature --binary > mypatch.patch having diff.image.command set to git-diff-image makes the patch fail since it still uses the text description provided by git_diff_image.
Is there a way to handle the --binary flag and disable the custom image diff? Or maybe an simple way (behind and alias) to enable/disable the custom image diff.
When trying to create a path file like
git diff master myfeature --binary > mypatch.patch
having diff.image.command set to git-diff-image makes the patch fail since it still uses the text description provided by git_diff_image.Is there a way to handle the --binary flag and disable the custom image diff? Or maybe an simple way (behind and alias) to enable/disable the custom image diff.