Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 874 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 874 Bytes

study-notes

学习,实践,沉淀,复习

本站是基于vuepress-theme-vdoing主题进行二次开发的,在此感谢该主题的作者,欢迎大家访问vuepress-theme-vdoing

提交标准

(1) type(必须) :commit 的类别,只允许使用下面几个标识:

feat : 新功能

fix : 修复bug

docs : 文档改变

style : 代码格式改变

refactor : 某个已有功能重构

perf : 性能优化

test : 增加测试

build : 改变了build工具 如 grunt换成了 npm

revert : 撤销上一次的 commit

chore : 构建过程或辅助工具的变动

(2) scope(可选):用于说明 commit 影响的范围,比如数据层、控制层、视图层等等,视项目不同而不同。

(3) subject(必须):commit 的简短描述,不超过50个字符。