Is there a way to make Git indent
/beautify/pretty print two versions of C++ source files before diffing them?
I don't want Git to show me the myriads of changes introduced after someone auto-formatted the code.
Example usage: I hit git difftool --indent-before-diffing path/to/file
and get the changes after both the original version of path/to/file
and the modified version of path/to/file
have been indented.
git diff
command. – Rush