GitHub Desktop 中的摘要和描述有什么区别?
What is the difference between summary and description in GitHub Desktop?
虽然我不觉得这很烦人或类似的事情,但我只是想知道在使用 commit
时指定 summary
或 description
有何不同GitHub 上的桌面版?如何使用 git commit
在终端上同时提供这两个?
摘要是提交消息的第一行:它总结了提交的原因(为什么,不是什么)
参见“The Art of the Commit”
剩下的进入描述。
按照惯例,第一行不应超过 50 个字符:
参见 this template
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
其他 Git GUI 执行相同的 summary/description 约定,like Atomio:
虽然我不觉得这很烦人或类似的事情,但我只是想知道在使用 commit
时指定 summary
或 description
有何不同GitHub 上的桌面版?如何使用 git commit
在终端上同时提供这两个?
摘要是提交消息的第一行:它总结了提交的原因(为什么,不是什么)
参见“The Art of the Commit”
剩下的进入描述。
按照惯例,第一行不应超过 50 个字符:
参见 this template
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
其他 Git GUI 执行相同的 summary/description 约定,like Atomio: