下面展現一下小編的 commit messagenode
這是生成的 CHANGELOGgit
目前規範使用較多的是 Angular 團隊的規範, 繼而衍生了 Conventional Commits specification. 不少工具也是基於此規範, 它的 message 格式以下:github
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
複製代碼
每一個提交消息由header,body和footer組成,其中 body 和 footer 能夠省略express
header只有一行,包括三個字段:type
(必需)、scope
(可選)和subject
(必需)json
範圍能夠是指定提交更改位置的任何內容,能夠*
在更改影響多個範圍時使用bash
這次commit的簡潔描述,不超過50個字符, 推薦使用英語提交commit。app
.
body 部分是對本次 commit 的詳細描述,能夠分紅多行, 好比描述與提交以前有什麼不一樣。ide
全部重大更改都必須做爲頁腳中的更改塊說起,它應以「BREAKING CHANGE」一詞開頭:空一到兩行。而後,提交消息的其他部分是對更改,理由和遷移說明的描述。工具
BREAKING CHANGE: isolate scope bindings definition has changed and
the inject option for the directive controller injection was removed.
To migrate the code follow the example below:
Before:
scope: {
myAttr: 'attribute',
myBind: 'bind',
myExpression: 'expression',
myEval: 'evaluate',
myAccessor: 'accessor'
}
After:
scope: {
myAttr: '@',
myBind: '@',
myExpression: '&',
// myEval - usually not useful, but in cases where the expression is assignable, you can use '='
myAccessor: '=' // in directive's template change myAccessor() to myAccessor } The removed `inject` wasn't generaly useful for directives so there should be no code using it.
複製代碼
關閉 issus 應該在頁腳的單獨行中列出,前綴爲「Closes」關鍵字,以下所示:性能
Closes #234
// 多個
Closes #123, #245, #992
複製代碼
這是我本身項目提交時使用的message, 你們能夠參考,下面是手動敲的,可使用工具 commitizen/cz-cli, 自動生成標準的commit message, 在此很少介紹
feat: write log message into file
Put log message into appoint dir, it will create the dir if not exist
複製代碼
refactor(package.json): update nodejs version and license
The version was 1.0.0, the license was ISC before update, and now, the version is 0.0.1, license is MIT
複製代碼