我需要使用Git log命令來提取Commit Id,commit commit主體,其中commit-body包含特定的單詞。我還需要僅打印包含該單詞的提交主體中的那些行。使用Git Log命令的grep功能
使用下面的命令,我能夠獲得相關的提交ID和主題,但是我看不到包含單詞'CRs-Fixed'的提交主體中的行。
git log --pretty=format:"%H,%s" AU_1..AU2 --no-merges --grep='CRs-Fixed'
,如果我做git log --pretty=format:"%H,%s,%b" AU_1..AU2 --no-merges --grep='CRs-Fixed'
, 我得到了整個身體 - 提交我不需要。
關於如何獲得所需信息的任何建議?