Add PowerShell alias to your profile.
function Get-Git { & git $args }
New-Alias g Get-Git -Force -Option AllScope
This will alias g to git, however you forgo the tab expansion.
posh-git shell is replacing default TabExpansion function with own implementation.