summaryrefslogtreecommitdiff
path: root/utils/releasetools
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-07-28 14:15:31 +0200
committerantirez <antirez@gmail.com>2016-07-28 14:15:31 +0200
commit8966d4ca5e2d5376c1bfee326335e235d2bf762d (patch)
tree0029c0805480080a65f822882468512625bd44ee /utils/releasetools
parent55385f99debddb23da8a8045273c88b50be24c0f (diff)
downloadredis-8966d4ca5e2d5376c1bfee326335e235d2bf762d.tar.gz
Changelog format modified to be less verbose.
Diffstat (limited to 'utils/releasetools')
-rwxr-xr-xutils/releasetools/changelog.tcl6
1 files changed, 5 insertions, 1 deletions
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