When I execute Git commands in PowerShell everything is working great except one minor difference between the PowerShell console and the NuGet console. The output from a "git push
" is displayed in red error text in the NuGet window but displays fine in the PowerShell window.
Here is a video showing the difference. "git push
" displays its results as an error in the package manager console. The operation worked, it's just annoying that the output from the operation is displayed as an error.
See the video
Root cause: git push
is sending output to stderr, not stdout. See here, here.
Powershell.exe as a host does not get worried when native tools send output to stderr, since this is a somewhat common way to print not just error messages but status messages and other stuff. For example, try running something totally bogus like
PS C:\> $result = findstr.exe q w e r t y
Findstr is sending error messages to stderr, so Powershell.exe knows not to assign that "error" output to your variable, but it also doesn't freak out.
The NuGet package manager host, on the other hand, is not as smart in this regard. When running any native tool, this host interprets anything in stderr as being truly an error. Thus you get the red text, diagnostic messages, etc. Try the same findstr
example above in the PM, you will see full errors.
A couple of workarounds/suggestions:
--porcelain
parameter, which causes output to go to stdout, not stderr.$errorView = 'CategoryView'
which will at least minimize the error messages, though not remove themgit push 2>&1 | write-host
To fix this and keep working with Powershell ISE you can create a cmd file with the following content:
@echo off
git.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 2>&1
And register it as alias (inside your profile):
Set-Alias git "git.cmd"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With