TortoiseGit, supposedly, reads settings from the .gitconfig
, .gitignore
file(s). In our project, we regularly encounter EOL type changes due to a mix between *NIX and Windows environments, but Git settings takes care of that when committing the changes.
When I type git diff
or git status
on the command line, the diff tool ignores EOL changes, and files which only differ by this are not listed.
However, when viewing the file diff lists on the various TortoiseGit windows (like, on the commit window), I get those files listed, but with the "Lines added" and "Lines removed" numbers set to 0.
How can I set TortoiseGit to ignore those EOL-modified files and not show them on those lists, similar to the git diff
behaviour?