We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e19f16 commit ee1c6f8Copy full SHA for ee1c6f8
commitizen/commands/bump.py
@@ -230,6 +230,13 @@ def __call__(self): # noqa: C901
230
c = git.commit(message, args=self._get_commit_args())
231
if c.return_code != 0:
232
raise BumpCommitFailedError(f'2nd git.commit error: "{c.err.strip()}"')
233
+
234
+ if c.out:
235
+ out.write("git commit stdout: " + c.out)
236
237
+ if c.err:
238
+ out.write("git commit stderr: " + c.err)
239
240
c = git.tag(
241
new_tag_version,
242
signed=self.bump_settings.get("gpg_sign", False)
0 commit comments