2 # Announcement message skelton
8 relname
=$
(git describe
"$commit") &&
9 vername
=$
(expr "$relname" : 'v\(.*\)') ||
exit $?
11 git rev-parse
--verify "$previous" >/dev
/null ||
exit $?
15 kind
="The latest maintenance release" ;;
16 mainto
/* | maint-
[0-9]*)
17 kind
="A maintenance release" ;;
19 kind
="The latest feature release" ;;
25 vername
=$
(echo "$vername" |
tr "-" ".")
26 kind
="A release candidate"
27 for_testing
=" for testing"
36 To: git@vger.kernel.org
37 Cc: Linux Kernel <linux-kernel@vger.kernel.org>
38 Subject: [ANNOUNCE] Git $relname
43 $kind Git $relname is now available$for_testing at the usual places.
48 The release tarballs are found
at:
50 http
://code.google.com
/p
/git-core
/downloads
/list
52 and their SHA-1 checksums are
:
56 if test -f git-
$vername.sign
58 sed -e '1,/^$/d' -e '/^-----BEGIN PGP SIGNATURE/,$d' git-
$vername.sign
63 Also the following public repositories all have a copy of the $relname
64 tag and the $branch branch that the tag points at:
66 url = git://repo.or.cz/alt-git.git
67 url = https://code.google.com/p/git-core/
68 url = git://git.sourceforge.jp/gitroot/git-core/git.git
69 url = git://git-core.git.sourceforge.net/gitroot/git-core/git-core
70 url = https://github.com/gitster/git
74 RelNotes
=$
(git cat-file blob
"${branch}:RelNotes") &&
75 git cat-file blob
"${branch}:$RelNotes" |
78 sed -e 's/^Git .* Release Notes$/& (draft)/'
87 ----------------------------------------------------------------
89 Changes since $previous are as follows:
93 git log
--no-merges "$previous"..
"$branch" |