This may solve the white commit hash id problem:
https://stackoverflow.com/questions/11515089/why-no-yellow-in-powershell-and-posh-git
"
It turns out PowerShell's console renders System.ConsoleColor.DarkYellow as
white:
[Enum]::GetValues([ConsoleColor]) | %{ Write-Host $_ -ForegroundColor $_ }
Using bold yellow instead, which renders with System.ConsoleColor.Yellow,
works:
git log --pretty='%C(bold yellow)%h%Creset %s' --abbrev-commit
"
I will investigate this soon/probably tomorrow.
Bye,
Skybuck.
--
You received this message because you are subscribed to the Google Groups "Git
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/git-users/a87e01fb-7a2d-4fd4-926a-e32b4b8bea07n%40googlegroups.com.