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 flag can be set in the `toml` file with the key `changelog_incremental` under `tools.commitizen`
118
+
117
119
Benefits:
118
120
119
121
- Build from latest version found in changelog, this is useful if you have a different changelog and want to use commitizen
@@ -124,6 +126,28 @@ Benefits:
124
126
cz changelog --incremental
125
127
```
126
128
129
+
```toml
130
+
[tools.commitizen]
131
+
# ...
132
+
changelog_incremental = true
133
+
```
134
+
135
+
### `start-rev`
136
+
137
+
This value can be set in the `toml` file with the key `changelog_start_rev` under `tools.commitizen`
138
+
139
+
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.
0 commit comments