引入
优雅的使用
git commit
公司要求, 使用
commitizen
模块来规范代码提交约定式提交释义 : https://www.conventionalcommits.org/zh-hans/v1.0.0/
一.安装
pip install commitizen
二.commit massage 组成
使用
commitizen
提交时, 提交的信息分为三部分
1.Header
type
: 9 种选项, 上下选择( 必选 )scope
: 用于说明影响的范围,比如数据层、控制层、视图层等等 (选填)subject
: 主题, 此次修改描述 (必填)
2.Body
- 对
subject
的扩充描述 (选填)
3.Footer
issues
相关 (选填)
三.使用步骤
1.添加修改文件
>>git add .\views.py
2.commitizen 提交
>>cz c
cz c
是简写
3.填写 commage massage
- 选择
type
- 填写其余内容, 非必填可选择性跳过
- 推
>>git push -u origin "master"
- 效果