Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8966d4c

Browse files
committedJul 28, 2016
Changelog format modified to be less verbose.
1 parent 55385f9 commit 8966d4c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎utils/releasetools/changelog.tcl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ append template "\n\n"
2121
set date [clock format [clock seconds]]
2222
set template [string map [list %ver% $ver %date% $date] $template]
2323

24-
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]
24+
append template [exec git log $branch~30..$branch "--format=format:%an in commit %h:%n %s" --shortstat]
25+
26+
#Older, more verbose version.
27+
#
28+
#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]
2529

2630
puts $template

0 commit comments

Comments
 (0)
Please sign in to comment.