You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Git.AutoInterrupt.wait() method will fail reporting the correct error message from the underlying git command because, if the command exits with a non-zero status code, this method will attempt to read from the subprocess' stderr stream (which has already been closed at this point because of wait() I suppose). Therefore, GitCommandError is never raised because 'ValueError: I/O operation on closed file' is raised before.