1. Git安装
2. Git规范
2.1 统一IDEA模板
不要使用 首字母缩写,或者无意义的文字作为author
2.2 Git Config设置
git config --global user.name "<中文姓名><花名>"
git config --global user.email "<邮箱>"
与 IDEA 模板 author 设置同理,便于找到代码作者
2.3 Git提交规范
提交类型 type 用来描述一次提交行为的改动方向。
type 的可选值如下。注意:Git log 的 type 和 changelog 的 type 存在紧密联系;然而它们两者之间并非一一对应,比如在 changelog 中一般不会指出文档 docs 或测试用例 test 等方面发生的变化。
禁止无意义的Git log,比如 update code, fix bug这种
2.4 分支管理规范
todo