Keeping git coloring when piping
git log
produces colored output, but when using pipe it loses color information
git log | head
but this can be fixed with
git log --color=always | head
Special thanks to Dude :D
Tweetgit log
produces colored output, but when using pipe it loses color information
git log | head
but this can be fixed with
git log --color=always | head
Special thanks to Dude :D
Tweet