You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commitizen/cli.py
+13-1
Original file line number
Diff line number
Diff line change
@@ -156,12 +156,24 @@ def __call__(
156
156
"action": "store_true",
157
157
"help": "Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.",
158
158
},
159
+
{
160
+
"name": ["-e", "--edit"],
161
+
"action": "store_true",
162
+
"default": False,
163
+
"help": "edit the commit message before committing",
164
+
},
159
165
{
160
166
"name": ["-l", "--message-length-limit"],
161
167
"type": int,
162
168
"default": 0,
163
169
"help": "length limit of the commit message; 0 for no limit",
Copy file name to clipboardExpand all lines: docs/contributing.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ If you're a first-time contributor, you can check the issues with [good first is
22
22
(We use [CodeCov](https://codecov.io/) to ensure our test coverage does not drop.)
23
23
7. Use [commitizen](https://github.com/commitizen-tools/commitizen) to do git commit. We follow [conventional commits](https://www.conventionalcommits.org/).
24
24
8. Run `./scripts/format` and `./scripts/test` to ensure you follow the coding style and the tests pass.
25
-
9. Optionally, update the `./docs/README.md`.
25
+
9. Optionally, update the `./docs/README.md` or `docs/images/cli_help` (through running `scripts/gen_cli_help_screenshots.py`).
26
26
9.**Do not** update the `CHANGELOG.md`, it will be automatically created after merging to `master`.
27
27
10.**Do not** update the versions in the project, they will be automatically updated.
28
28
10. If your changes are about documentation. Run `poetry run mkdocs serve` to serve documentation locally and check whether there is any warning or error.
0 commit comments