We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc81dc8 commit 600f96aCopy full SHA for 600f96a
commitizen/cli.py
@@ -398,7 +398,6 @@ def main():
398
raise InvalidCommandArgumentError(
399
f"Invalid commitizen arguments were found before -- separator: `{' '.join(unknown_args[:pos])}`. "
400
)
401
- # TODO: treat case when extra-args and commitizen args are identical
402
extra_args = " ".join(unknown_args[1:])
403
arguments["extra_cli_args"] = extra_args
404
commitizen/commands/commit.py
@@ -82,6 +82,7 @@ def __call__(self):
82
signoff: bool = self.arguments.get("signoff")
83
84
if signoff:
85
+ out.warn("signoff mechanic is deprecated, please use `cz commit -- -s` instead.")
86
c = git.commit(m, "-s")
87
88
if self.arguments.get("extra_cli_args"):
0 commit comments