I have the following output with git-diff.
- // sort list based on value + // sort list based on value
How can I see easily see the num
I can think of multiple options:
Configure Git to use colors: git config --global color.ui true. Whitespace at the end of lines is now highlighted in red.
git config --global color.ui true
Pipe the output of git diff through cat: git diff | cat -A. The -A flag tells cat to show non-printable characters (e.g. ^I for tab).
git diff
cat
git diff | cat -A
-A
^I