diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh new file mode 100755 index 00000000000..1e1ef26e266 --- /dev/null +++ b/bin/shortlog_mesa.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# This script is used to generate the list of changes that +# appears in the release notes files, with HTML formatting. + + +typeset -i in_log=0 + +git shortlog $* | while read l +do + if [ $in_log -eq 0 ]; then + echo '

'$l + echo '

' + echo + in_log=0 + else + mesg=$(echo $l | sed 's/ (cherry picked from commit [0-9a-f]\+)//;s/\&/&/g;s//\>/g') + echo '
  • '${mesg}'
  • ' + fi +done