最近发现自己的git 提交, 越来越混乱了.
学学 怎么写 提交 也是很好的
有规范.https://www.ruanyifeng.com/blog/2016/01/commit_message_change_log.html
但是我还是想要工具来约束自己,要不然还是无法规范自己
// ubuntu 20.04
sudo apt install npm
sudo npm install -g commitizen
git工程目录
npm init -y
commitizen init cz-conventional-changelog --save --save-exact
git add file_xxx
//git commit -m 不能用commit 提交 , 而是用 git cz
git cz // 然后根据下拉菜单选择
最后生成的提交类似这样子 :
feat(framework): framework for distributing commands
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)