如何在--pretty git log中包含提交描述?

时间:2014-06-06 11:04:00

标签: git github

由于GitHub Mac应用程序开始阻止我在提交中编写长摘要文本,因此我一直在使用“描述”字段开始记录更多详细信息。

我使用我的git日志来生成这样的更改日志:

> git log --pretty=%s --since "last wednesday"
Prevents a double 'error #8' message
This should be part of e074d5b
Logging out while offline is problematic...
Make the Pinterest sharing choices less ambiguous
Sometimes the download buttons disappeared
Downloading wasn't prompting subscriptions on iPad

但是,现在我想要包含描述文本,这样我就不会错过以这种方式更新我的更改日志的任何细节。我在git book http://git-scm.com/book/en/Git-Basics-Viewing-the-Commit-History的此页面列表中没有看到description的任何内容。

1 个答案:

答案 0 :(得分:0)

没关系,通过git help log找到它。

git log --pretty='%s %b'可以解决问题。