I\'m running git-diff on a file, but the change is at the end of a long line.
If I use cursor keys to move right, it loses colour-coding—and worse the lines do
To use less as the pager and make line wrapping permanent you can simply enable the fold-long-lines option:
git config --global core.pager 'less -+S'
This way you do not have to type it while using less.
Cheers