How to see contributor's email address on Git commit chain?

后端 未结 2 1292
名媛妹妹
名媛妹妹 2021-02-07 10:52

I can\'t see how to email a contributor on github after lengthy attempts, and google searches. Why does every beginners guide encourage us to immediately configure our user.emai

2条回答
  •  轮回少年
    2021-02-07 11:05

    Here is some command to get author and email of the last commit:

    git show --format="%aN <%aE>" COMMIT_ID
    

    Here the version for older git versions (<= 1.6)

    git log -1 --pretty=format:"%an <%ae>"
    

提交回复
热议问题