Angular规范的git commit message 2021-10-22 17:00 | 2022-1-22 23:13 | 風楪fy | 代码管理 | 429 940 字 | 9 分钟 介绍 Git 每次提交代码,都要写 Commit message(提交说明),否则就不允许提交。 git commit -m "hello world" 上面代码的-m参数,就是用来指定 commit mesage 的。 如果一行不够,可以只执行git commit,就会跳出文本编译器,让你写多行。 git commit 原则上是写什么都行的。 但…