Skip to content

Commit 5bdf251

Browse files
author
dud3z
committed
Add changelog creation utilities
1 parent dc49b61 commit 5bdf251

File tree

2 files changed

+446
-0
lines changed

2 files changed

+446
-0
lines changed

changelog.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
if [ -z "$1" ]; then
4+
echo 'Please specify a starting position'
5+
exit 1
6+
fi
7+
8+
if [ -z "$2" ]; then
9+
echo 'Please specify an ending position'
10+
exit 1
11+
fi
12+
13+
14+
./gitlog-to-changelog.pl --format='* %s%n%n%b' --strip-tab -- "$1".."$2"

0 commit comments

Comments
 (0)