File tree 1 file changed +4
-7
lines changed
commitizen/cz/conventional_commits 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,7 @@ def questions(self) -> List[Dict[str, Any]]:
100
100
"type" : "input" ,
101
101
"name" : "scope" ,
102
102
"message" : (
103
- "Scope. Could be anything specifying place of the "
104
- "commit change (users, db, poll):\n "
103
+ "What is the scope of this change? (class or file name): (press enter to skip)\n "
105
104
),
106
105
"filter" : parse_scope ,
107
106
},
@@ -110,16 +109,14 @@ def questions(self) -> List[Dict[str, Any]]:
110
109
"name" : "subject" ,
111
110
"filter" : parse_subject ,
112
111
"message" : (
113
- "Subject. Concise description of the changes. "
114
- "Imperative, lower case and no final dot:\n "
112
+ "Write a short and imperative summary of the code changes:\n "
115
113
),
116
114
},
117
115
{
118
116
"type" : "input" ,
119
117
"name" : "body" ,
120
118
"message" : (
121
- "Body. Motivation for the change and contrast this "
122
- "with previous behavior:\n "
119
+ "Provide additional contextual information about the code changes: (press enter to skip)\n "
123
120
),
124
121
"filter" : multiple_line_breaker ,
125
122
},
@@ -134,7 +131,7 @@ def questions(self) -> List[Dict[str, Any]]:
134
131
"name" : "footer" ,
135
132
"message" : (
136
133
"Footer. Information about Breaking Changes and "
137
- "reference issues that this commit closes:\n "
134
+ "reference issues that this commit closes: (press enter to skip) \n "
138
135
),
139
136
},
140
137
]
You can’t perform that action at this time.
0 commit comments