美文网首页
git 提交代码 如何配置模板

git 提交代码 如何配置模板

作者: i断章 | 来源:发表于2021-04-16 14:34 被阅读0次

    1.新建模板文件,可在电脑的某个盘下新建

    模板内容如下(仅供参考):

    fix(<模块>): <描述>

    #<具体描述>

    #<问题单号>

    # type 字段包含:

    # feat:新功能(feature)

    # fix:修补bug

    # docs:文档(documentation)

    # style: 格式(不影响代码运行的变动)

    # refactor:重构(即不是新增功能,也不是修改bug的代码变动)

    # test:增加测试

    # chore:构建过程或辅助工具的变动

    # scope:用于说明 commit 影响的范围,比如数据层、控制层、视图层等等。

    # subject:是 commit 目的的简短描述,不超过50个字符

    # Body:部分是对本次 commit 的详细描述,可以分成多行

    # Footer:用来关闭 Issue或以BREAKING CHANGE开头,后面是对变动的描述、以及变动理由和迁移方法

    # Please enter the commit message for your changes. Lines starting

    # with '#' will be ignored, and an empty message aborts the commit.

    #

    # On branch feature/20210416

    # Your branch is up to date with 'origin/feature/20210416'.

    #

    # Changes to be committed:

    # modified:  src/config/index.ts

    #

    2.git配置提交代码打开模板

    git config --global commit.template /home/song/work/song_complate // commit.template 后面是自己创建的模板文件的绝对路径  为1新建的模板地址

    3.设置以某编辑器打开模板

    3.1.以vim打开模板如下配置:

    git config --global core.editor vim // core.editor后面跟的是要设置的编辑器 ,我这里设置的为vim

    3.2.以Notepad++打开

    $ git config --global core.editor " 'C:\Program Files\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin"   // 加粗位置为编辑器安装地址 可右击软件属性查看

    相关文章

      网友评论

          本文标题:git 提交代码 如何配置模板

          本文链接:https://www.haomeiwen.com/subject/ncjelltx.html