@@ -114,11 +114,13 @@ def __call__(
114114 "commands" : [
115115 {
116116 "name" : ["init" ],
117+ "description" : "init commitizen configuration" ,
117118 "help" : "init commitizen configuration" ,
118119 "func" : commands .Init ,
119120 },
120121 {
121122 "name" : ["commit" , "c" ],
123+ "description" : "create new commit" ,
122124 "help" : "create new commit" ,
123125 "func" : commands .Commit ,
124126 "arguments" : [
@@ -164,22 +166,31 @@ def __call__(
164166 },
165167 {
166168 "name" : "ls" ,
169+ "description" : "show available commitizens" ,
167170 "help" : "show available commitizens" ,
168171 "func" : commands .ListCz ,
169172 },
170173 {
171174 "name" : "example" ,
175+ "description" : "show commit example" ,
172176 "help" : "show commit example" ,
173177 "func" : commands .Example ,
174178 },
175179 {
176180 "name" : "info" ,
181+ "description" : "show information about the cz" ,
177182 "help" : "show information about the cz" ,
178183 "func" : commands .Info ,
179184 },
180- {"name" : "schema" , "help" : "show commit schema" , "func" : commands .Schema },
185+ {
186+ "name" : "schema" ,
187+ "description" : "show commit schema" ,
188+ "help" : "show commit schema" ,
189+ "func" : commands .Schema ,
190+ },
181191 {
182192 "name" : "bump" ,
193+ "description" : "bump semantic version based on the git log" ,
183194 "help" : "bump semantic version based on the git log" ,
184195 "func" : commands .Bump ,
185196 "arguments" : [
@@ -346,6 +357,9 @@ def __call__(
346357 },
347358 {
348359 "name" : ["changelog" , "ch" ],
360+ "description" : (
361+ "generate changelog (note that it will overwrite existing file)"
362+ ),
349363 "help" : (
350364 "generate changelog (note that it will overwrite existing file)"
351365 ),
@@ -416,6 +430,7 @@ def __call__(
416430 },
417431 {
418432 "name" : ["check" ],
433+ "description" : "validates that a commit message matches the commitizen schema" ,
419434 "help" : "validates that a commit message matches the commitizen schema" ,
420435 "func" : commands .Check ,
421436 "arguments" : [
@@ -455,6 +470,10 @@ def __call__(
455470 },
456471 {
457472 "name" : ["version" ],
473+ "description" : (
474+ "get the version of the installed commitizen or the current project"
475+ " (default: installed commitizen)"
476+ ),
458477 "help" : (
459478 "get the version of the installed commitizen or the current project"
460479 " (default: installed commitizen)"
0 commit comments