If you do not want to turn off colors for all commands, you can at least turn it off only for the current log command:
git log --stats --no-color
As for time, what you see is not the usual log output. Check if any aliases are defined for git log .
Note: as indicated in " Copy the shell output via the command line " ,, an easy way to copy to pbcopy is to it :
pbcopy and clip. Using pbcopy inside the shell, the result can be automatically added to the copy queue (or clipboard).
The pbcopy pipeline at the end of the team makes this magic possible.
git log --stat --no-color | pbcopy
source share