I am trying to show different color for date and time in the git log
output.
Currently i am using git config --global alias.l 'log --pretty=format:"%C(#d33682)%h %C(#b58900)%cd %C(#6c71c4)%ce %C(#2aa198)%s %C(#cb4b16)" --date=format:"%d-%m-%Y %I-%M-%S"'
So, i tried git config --global alias.l 'log --pretty=format:"%C(#d33682)%h %cd %C(#6c71c4)%ce %C(#2aa198)%s %C(#cb4b16)" --date=format:"%C(#b58900)%d-%m-%Y %C(#859900)%I-%M-%S"'
Color inside --date=format:
is not working for me.
Any suggestions?