PowerShell displays some git command results as error in console even though operation was successful PowerShell displays some git command results as error in console even though operation was successful powershell powershell

PowerShell displays some git command results as error in console even though operation was successful


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:

  • Use the --porcelain parameter, which causes output to go to stdout, not stderr.
  • Set $errorView = 'CategoryView' which will at least minimize the error messages, though not remove them
  • Redirect stderr and do a plain console write like this: git 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 offgit.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"