diff options
author | antirez <antirez@gmail.com> | 2016-07-28 14:15:31 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2016-07-28 14:15:31 +0200 |
commit | 8966d4ca5e2d5376c1bfee326335e235d2bf762d (patch) | |
tree | 0029c0805480080a65f822882468512625bd44ee /utils | |
parent | 55385f99debddb23da8a8045273c88b50be24c0f (diff) | |
download | redis-8966d4ca5e2d5376c1bfee326335e235d2bf762d.tar.gz |
Changelog format modified to be less verbose.
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/releasetools/changelog.tcl | 6 |
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 |