創(chuàng)建統(tǒng)一的Git提交模版
1、在根目錄咪奖,創(chuàng)建模版文件
文件路徑:Users/xxx/xqcommit_template.txt
vim xqcommit_template.txt
[feature]
# type 字段包含:
# feature:新功能(feature)
# fix:修補(bǔ)bug
# docs:文檔(documentation)
# style: 格式(不影響代碼運(yùn)行的變動(dòng))
# refactor:重構(gòu)(即不是新增功能吧趣,也不是修改bug的代碼變動(dòng))
# test:增加測試
# chore:構(gòu)建過程或輔助工具的變動(dòng)
# 例子:[feature]JIRA_ID: 完成XXX功能
2雹姊、設(shè)置模版
- 為當(dāng)前分支設(shè)置提交模版
git config commit.template /Users/xxx/xqcommit_template.txt
- 全局設(shè)置提交模版
git config --global commit.template /Users/xxx/xqcommit_template.txt
3霞捡、設(shè)置文本編輯器
設(shè)置編輯器奥额,這樣 git commit
后手销,彈出的則是該編輯器
git config --global core.editor vim