Commit Cmd
Command for generating conventional commit messages from Git diffs.
logger
module-attribute
logger = getLogger(__name__)
NonInteractiveFlag
module-attribute
NonInteractiveFlag = Annotated[
bool,
Option(
"--non-interactive",
"-y",
help="Run in non-interactive mode",
),
]
BypassHooksFlag
module-attribute
BypassHooksFlag = Annotated[
bool,
Option(
"--bypass-hooks",
"--no-verify",
help="Bypass git hooks with --no-verify",
),
]
register_command
register_command(app: Typer) -> None
Register the commit commands with the CLI app.
Source code in src/codemap/cli/commit_cmd.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|