git 提交规范 初步尝试

git 提交规范 初步尝试,第1张

最近发现自己的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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/944622.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存