日期: 2021 年 10 月 22 日

1 篇文章

Angular规范的git commit message
介绍 Git 每次提交代码,都要写 Commit message(提交说明),否则就不允许提交。 git commit -m "hello world" 上面代码的-m参数,就是用来指定 commit mesage 的。 如果一行不够,可以只执行git commit,就会跳出文本编译器,让你写多行。 git commit 原则上是写什么都行的。 但…