Setup: Add a new file, do an svn add, and then delete the file so you get an svn missing error:
c:\path\trunk\svn commit
C:\path\trunk>svn commit svn: E155010: Commit failed (details follow):
svn: E155010: 'C:\path\trunk\New Text Document.txt' is scheduled for
addition, but is missing
However, if you run this same command from powershell you get the following instead:
PS>&svn commit
svn.exe : svn: E155010: Commit failed (details follow):
At line:1 char:1
+ &svn commit
+ ~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (svn: E155010: C...etails follow)::String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
You'll notice the powershell output never displays the referenced "details follow". Is there a way to show the full output from the command?