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
This value can be updated in the `toml` file with the key `changelog_file` under `tools.commitizen`
80
+
This value can be updated in the configuration file with the key `changelog_file` under `tools.commitizen`
110
81
111
82
Specify the name of the output file, remember that changelog only works with Markdown.
112
83
113
84
```bash
114
85
cz changelog --file-name="CHANGES.md"
115
86
```
116
87
117
-
### `incremental`
88
+
### `--incremental`
118
89
119
-
This flag can be set in the `toml` file with the key `changelog_incremental` under `tools.commitizen`
90
+
This flag can be set in the configuration file with the key `changelog_incremental` under `tools.commitizen`
120
91
121
92
Benefits:
122
93
@@ -134,9 +105,9 @@ cz changelog --incremental
134
105
changelog_incremental = true
135
106
```
136
107
137
-
### `start-rev`
108
+
### `--start-rev`
138
109
139
-
This value can be set in the `toml` file with the key `changelog_start_rev` under `tools.commitizen`
110
+
This value can be set in the configuration file with the key `changelog_start_rev` under `tools.commitizen`
140
111
141
112
Start from a given git rev to generate the changelog. Commits before that rev will not be considered. This is especially useful for long-running projects adopting conventional commits, where old commit messages might fail to be parsed for changelog generation.
This flag can be set in the `toml` file with the key `changelog_merge_prerelease` under `tools.commitizen`
126
+
This flag can be set in the configuration file with the key `changelog_merge_prerelease` under `tools.commitizen`
156
127
157
128
Collects changes from prereleases into the next non-prerelease. This means that if you have a prerelease version, and then a normal release, the changelog will show the prerelease changes as part of the changes of the normal release. If not set, it will include prereleases in the changelog.
Copy file name to clipboardExpand all lines: docs/commands/commit.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ The `commit` command provides an interactive way to create structured commits. U
11
11
-`cz commit`
12
12
-`cz c` (shortcut)
13
13
14
-
By default, Commitizen uses conventional commits, but you can customize the commit rules to match your project's needs. See the [customization guide](../customization.md) for details.
14
+
By default, Commitizen uses conventional commits, but you can customize the commit rules to match your project's needs. See the [customization guide](../customization/config_file.md) for details.
0 commit comments