如何在github上使用多行提交消息?

时间:2013-10-01 13:47:26

标签: git github

我有两个提交多行消息的提交。但是在github的麻烦案例中我只看到第一行。

commit da202cdb5085290a6498c434a0d9388d880fe8c8
Date:   Tue Oct 1 16:30:02 2013 +0200

    Line 1

    Line 2

commit c58f91213428728836b1364ecc111ba71e7c91c6
Date:   Tue Oct 1 15:47:12 2013 +0200

    [f] unique primary key for id in picture
    [+] join_db script

https://github.com/antofa/autowp_test/commits/dev

我使用下一个命令进行提交:

  

git commit -F commit_message.txt

     

git commit -m“第1行”-m“第2行”

github可以使用多行提交消息吗?

1 个答案:

答案 0 :(得分:5)

Github历史记录中包含所有行,但默认情况下,只有主题(第一行)显示在短历史记录中。

单击提交主题行旁边的...以显示完整评论。

编辑: 添加截图:
enter image description here