doc: Improve command to generate list of authors for release notes
- Remove dependency on sed (sed was overkill when you can just add plain text to the git log --format command) - Sort resulting list of authors alphabetically (case-insensitive) - Provide an example of how to only generate authors between versions
This commit is contained in:
parent
1c22cc1af1
commit
95464c7519
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ and sort them into categories based on labels)
|
|||
|
||||
Generate list of authors:
|
||||
|
||||
git log --format='%aN' "$*" | sort -ui | sed -e 's/^/- /'
|
||||
git log --format='- %aN' v(current version, e.g. 0.16.0)..v(new version, e.g. 0.16.1) | sort -fiu
|
||||
|
||||
Tag version (or release candidate) in git
|
||||
|
||||
|
|
Loading…
Reference in a new issue