We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc636a commit c520be3Copy full SHA for c520be3
release-notes.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+commitdiff=$1
4
5
+if test -z $commitdiff; then
6
+ echo "usage: $0 startcommit..endcommit"
7
+ exit
8
+fi
9
10
+git --no-pager log --no-merges --pretty=format:'%s (%an) : `%h <https://github.com/mapserver/mapcache/commit/%H>`__' $commitdiff | gsed 's!#\([0-9]\+\)! `#\1 <https://github.com/mapserver/mapcache/issues/\1>`__ !g'
11
0 commit comments