I have gotten poshgit to work in plain vanilla powershell with no problems. When I run a:
git pull origin master
I get the following good message:
From github.com:bmccord/WebShot * branch master ->
FETCH_HEAD Already up-to-date.
I have also set poshgit up to run form the NuGet Package Manager Console (since it is just a powershell inside of studio). However, when I run the same command, I get:
git.cmd : From github.com:bmccord/WebShot At line:1 char:4
+ git <<<< pull origin master
+ CategoryInfo : NotSpecified: (From github.com:bmccord/WebShot:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError * branch master -> FETCH_HEAD
It looks like it is working, but I also get what looks like an error.
Has anyone seen this before?
You are getting the same message, except that the Package manager console is wrapping the error ( the message that you classify as “good” message, must have been in the standard error)