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
docs(usage): update features and help information (#42)
* docs(usage): update help information
* docs(usage): update help information
* docs(usage): add features in the readme
* docs(usage): add more features
Copy file name to clipboardExpand all lines: README.md
+16-6Lines changed: 16 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,18 @@
7
7
8
8
Command line utility to standardize git commit messages, golang version. Forked from [commitizen-go](https://github.com/lintingzhen/commitizen-go).
9
9
10
-
The [survey](https://github.com/AlecAivazis/survey) project is no longer maintained. Therefore, this project uses [bubbletea](https://github.com/charmbracelet/bubbletea) instead.
10
+
Fixes some issues of commitizen-go and supports more new features.
- Use [bubbletea](https://github.com/charmbracelet/bubbletea) instead of [survey](https://github.com/AlecAivazis/survey) ([survey](https://github.com/AlecAivazis/survey) is no longer maintained).
20
+
- Better unit tests.
21
+
14
22
## Getting Started
15
23
16
24
```
@@ -20,16 +28,18 @@ Usage:
20
28
commitizen
21
29
commitizen [command]
22
30
23
-
Available Commands:
31
+
Available Commands:
24
32
init Install this tool to git-core as git-cz.
25
33
version Print the CLI version information.
26
34
help Help about any command
27
35
28
36
Flags:
29
-
-s, --signoff add a Signed-off-by trailer by the committer at the end of the commit log message.
30
-
-a, --add 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.
31
-
--dry-run you can use the --dry-run flag to preview the message that would be committed, without really submitting it.
32
-
-h, --help help for commitizen
37
+
-a, --add 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.
38
+
-s, --signoff add a Signed-off-by trailer by the committer at the end of the commit log message.
39
+
--dry-run you can use the --dry-run flag to preview the message that would be committed, without really submitting it.
40
+
-t, --template string template name to use when multiple templates exist.
41
+
-d, --default use the default template, '--default' has a higher priority than '--template'.
42
+
-h, --help help for commitizen
33
43
34
44
Use "commitizen [command] --help" for more information about a command.
0 commit comments