How do I show just the names and commit titles since a tag in Git?

后端 未结 5 1469
逝去的感伤
逝去的感伤 2021-01-30 08:32

I\'m trying to use tags for release management in Git—I create a tag for each release. I\'d like to be able to create release notes by listing the comment titles for every commi

5条回答
  •  执笔经年
    2021-01-30 08:43

    In order to get detailed infos on commit with a certain (known) message, I firstly call git log --oneline for overview of commints with messeges and then by the identified SHA view the commit with git show or git log --stat -p

提交回复
热议问题