I asked on Superuser about colors for git log
in MobaXterm (on Windows), but it turned out that the problem wasn't MobaXterm—it's the lack of a -R
flag in busybox's less
.
It would help my workflow greatly if I could see colors in the output of git's usual commands—git log, git diff, etc.
My terminal itself is capable of colors, as I verified by setting git config color.ui always
and running git log | cat
. However I can't use cat as my pager, for obvious reasons.
Is there an alternative to less -R
that works on busybox? Or some other pager I could install and use with git for color capabilities?
type less
returnedless is aliased to '/bin/busybox.exe less'
. Runningapt-get install less
handled it. – Wildcard Nov 17 '15 at 04:56