From 8966d4ca5e2d5376c1bfee326335e235d2bf762d Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 28 Jul 2016 14:15:31 +0200 Subject: [PATCH] Changelog format modified to be less verbose. --- utils/releasetools/changelog.tcl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utils/releasetools/changelog.tcl b/utils/releasetools/changelog.tcl index bf0ad999e..4b5424ce2 100755 --- a/utils/releasetools/changelog.tcl +++ b/utils/releasetools/changelog.tcl @@ -21,6 +21,10 @@ append template "\n\n" set date [clock format [clock seconds]] set template [string map [list %ver% $ver %date% $date] $template] -append template [exec git log $branch~30..$branch "--format=format:+-------------------------------------------------------------------------------%n| %s%n| By %an, %ai%n+--------------------------------------------------------------------------------%nhttps://github.com/antirez/redis/commit/%H%n%n%b" --stat] +append template [exec git log $branch~30..$branch "--format=format:%an in commit %h:%n %s" --shortstat] + +#Older, more verbose version. +# +#append template [exec git log $branch~30..$branch "--format=format:+-------------------------------------------------------------------------------%n| %s%n| By %an, %ai%n+--------------------------------------------------------------------------------%nhttps://github.com/antirez/redis/commit/%H%n%n%b" --stat] puts $template