Hacker News new | ask | show | jobs
by amigoingtodie 3115 days ago
What about code being 'deleted' that git diff does not catch?

Is there a recommended external diff tool that ameliorates these issues?

2 comments

Maybe cat -v?

    $ git diff | cat -v
However it's considered harmful: http://harmful.cat-v.org/cat-v/ ;)
or

git diff > tmp.diff

and open with a text editor?

  git diff | less -U
But the you lose all the colors.