建议使用 Gerrit 避免新手覆盖别人的代码,可以不用拉最新代码直接推送变更
相关规范详见:Git_Commiter.md
先剪切走提交一次再移回来提交一次,否则其他人拉代码的人可能会报错或者没变化
# 设置不忽略大小写
git config core.ignorecase false
https://git-scm.com/book/zh/v2/Git-工具-重写历史
- Fixed 兼容 GitHub 和 GitLab
- 约定式提交 https://www.conventionalcommits.org/zh-hans/v1.0.0/
- 类型:fix feat refactor perf test docs style ci build
- VS Code 约定式提交插件
- IDEA 约定式提交插件
- 建议国内放个中文提示配置文件 conventionalcommit.json
- 约定式提交起源于 Angular 提交规范 https://github.com/angular/angular/blob/main/CONTRIBUTING.md
- Angular 已经删除了 chore,避免 chore 泛滥
- chore 的定义和 ci build test docs 重叠
- chore 这个单词国内不太多人认识