其他分享
首页 > 其他分享> > git--提交日志规范

git--提交日志规范

作者:互联网

对于版本控制工具来说,尤为重要的就是每次提交版本到代码库的日志撰写。清晰、规范、格式化的提交日志有助于追踪版本修改,查看历史记录等。 Git 不允许提交日志为空,这里推荐使用目前使用最广泛的 angular 规范。

angular 规范的 commit message 包括 3 个部分 ,header 、body 和 footer 。

<type> (<scope>) : <subject>//空一行<body>//空一行<footer>

复制

参考地址:https://cloud.tencent.com/developer/article/1404933

标签:变动,git,footer,--,规范,提交,commit,日志
来源: https://www.cnblogs.com/cxy-lxl/p/16609242.html