From c346b41e22eda91d13ab850676c4c5567f546c82 Mon Sep 17 00:00:00 2001 From: Sergii Tkachenko Date: Thu, 11 Jan 2024 11:37:19 -0800 Subject: [PATCH] RELEASING.md: Include author email in shortlog (#10794) Makes it easier to track down / credit the author. --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 2ef733f4c87..ff43823ed43 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -76,7 +76,7 @@ would be used to create all `v1.7` tags (e.g. `v1.7.0`, `v1.7.1`). ```bash echo "## gRPC Java $MAJOR.$MINOR.0 Release Notes" && echo && \ - git shortlog --format='%s (%h)' "$(git merge-base upstream/v$MAJOR.$((MINOR-1)).x upstream/v$MAJOR.$MINOR.x)"..upstream/v$MAJOR.$MINOR.x | cat && \ + git shortlog -e --format='%s (%h)' "$(git merge-base upstream/v$MAJOR.$((MINOR-1)).x upstream/v$MAJOR.$MINOR.x)"..upstream/v$MAJOR.$MINOR.x | cat && \ echo && echo && echo "Backported commits in previous release:" && \ git log --oneline "$(git merge-base v$MAJOR.$((MINOR-1)).0 upstream/v$MAJOR.$MINOR.x)"..v$MAJOR.$((MINOR-1)).0^ ```