projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3a8817
)
Automatically print list of contributors when generating tarball
author
Nikolaus Rath
<Nikolaus@rath.org>
Wed, 20 Sep 2017 17:17:49 +0000
(18:17 +0100)
committer
Nikolaus Rath
<Nikolaus@rath.org>
Wed, 20 Sep 2017 17:17:49 +0000
(18:17 +0100)
make_release_tarball.sh
patch
|
blob
|
history
diff --git
a/make_release_tarball.sh
b/make_release_tarball.sh
index 9825c9f3dadb3dcf14950e782b8437c3d0079d34..36b726cb760bee064c98df5f76988158b03c34a2 100755
(executable)
--- a/
make_release_tarball.sh
+++ b/
make_release_tarball.sh
@@
-26,3
+26,8
@@
rm "${TAG}/make_release_tarball.sh" \
cp -a doc/html "${TAG}/doc/"
tar -cJf "${TAG}.tar.xz" "${TAG}/"
gpg --armor --detach-sign "${TAG}.tar.xz"
+
+PREV_TAG="$(git tag --list 'fuse-3*' --sort=-taggerdate --merged "${TAG}^"| head -1)"
+echo "Contributors from ${PREV_TAG} to ${TAG}:"
+git log --pretty="format:%an <%aE>" "${PREV_TAG}..${TAG}" | sort -u
+