diff options
author | Bruce Momjian | 2017-04-12 19:40:30 +0000 |
---|---|---|
committer | Bruce Momjian | 2017-04-12 19:40:37 +0000 |
commit | 854854019a282b6e74f586a3ee8c88c791193d32 (patch) | |
tree | 915b7b0a33a368c95414a20df3813822b445e05e | |
parent | 003d80f3dfadd57c6aac8480436ff53ee2c978bd (diff) |
git_changelog: improve instructions for finding branch commits
Specifically, use '--summary' with 'git show'.
-rwxr-xr-x | src/tools/git_changelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/git_changelog b/src/tools/git_changelog index b9e631bb9c..cf6aba67b2 100755 --- a/src/tools/git_changelog +++ b/src/tools/git_changelog @@ -34,7 +34,7 @@ # To generate major release notes, intended usage is # git_changelog --master-only --brief --oldest-first --since='start-date' # To find the appropriate start date, use: -# git show $(git merge-base REL9_5_STABLE master) +# git show --summary $(git merge-base REL9_5_STABLE master) # where the branch to mention is the previously forked-off branch. This # shows the last commit before that branch was made. # |