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 e91ea40 commit 069fbb7Copy full SHA for 069fbb7
commitizen/cli.py
@@ -465,7 +465,6 @@ def main():
465
raise InvalidCommandArgumentError(
466
f"Invalid commitizen arguments were found before -- separator: `{' '.join(unknown_args[:pos])}`. "
467
)
468
- # TODO: treat case when extra-args and commitizen args are identical
469
extra_args = " ".join(unknown_args[1:])
470
arguments["extra_cli_args"] = extra_args
471
commitizen/commands/commit.py
@@ -98,6 +98,7 @@ def __call__(self):
98
99
100
if signoff:
101
+ out.warn("signoff mechanic is deprecated, please use `cz commit -- -s` instead.")
102
c = git.commit(m, "-s")
103
104
if self.arguments.get("extra_cli_args"):
0 commit comments