Git tips: Git commit -m多行提交

Posted by Dan on July 17, 2020

当使用命令行Git commit 提交代码时,大部分如下,提交一行信息。

1
git commit -m 'This is commit message'

那如果要提交多行呢,可以这个样子

1
git commit -m 'commit title' -m 'commit description'

第一个是commit的标题,第二个commit是描述。Git 文档描述如下

如果添加多个 -m 信息,Git可以将其分段连接起来。

示例:

1
2
3
4
5
6
7
8
9
git commit -m 'commit title' -m 'commit description' -m 'descript more'

# git log 输出如下
Date:   Fri Jul 17 14:24:52 2020 +0800
    commit title
    
    commit description
    
    descript more

参考链接:

git commit accepts several message flags (-m) to allow multiline commits