We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a118e commit 75c9f56Copy full SHA for 75c9f56
commitizen/cli.py
@@ -434,7 +434,6 @@ def main():
434
raise InvalidCommandArgumentError(
435
f"Invalid commitizen arguments were found before -- separator: `{' '.join(unknown_args[:pos])}`. "
436
)
437
- # TODO: treat case when extra-args and commitizen args are identical
438
extra_args = " ".join(unknown_args[1:])
439
arguments["extra_cli_args"] = extra_args
440
commitizen/commands/commit.py
@@ -91,6 +91,7 @@ def __call__(self):
91
signoff: bool = self.arguments.get("signoff")
92
93
if signoff:
94
+ out.warn("signoff mechanic is deprecated, please use `cz commit -- -s` instead.")
95
c = git.commit(m, "-s")
96
97
if self.arguments.get("extra_cli_args"):
0 commit comments