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
When calling repo.git.rebase('origin/master') and the command fails, a GitCommandError is thrown. But the command's output is not captured there because it seems like git rebase always prints to stdout.
My suggestion is to add a stdout variable to GitCommandError to capture this output, too.
The text was updated successfully, but these errors were encountered:
Sorry for the duplicate bug entries, #91 was the first Pull Request I ever made in GitHub and did't know, it will create a bug entry, too, so please close this bug ticked.
When calling
repo.git.rebase('origin/master')
and the command fails, aGitCommandError
is thrown. But the command's output is not captured there because it seems likegit rebase
always prints tostdout
.My suggestion is to add a
stdout
variable toGitCommandError
to capture this output, too.The text was updated successfully, but these errors were encountered: