Commit 8966d4ca authored by antirez's avatar antirez
Browse files

Changelog format modified to be less verbose.

parent 55385f99
...@@ -21,6 +21,10 @@ append template "\n\n" ...@@ -21,6 +21,10 @@ append template "\n\n"
set date [clock format [clock seconds]] set date [clock format [clock seconds]]
set template [string map [list %ver% $ver %date% $date] $template] 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 puts $template
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment