diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 13:40:12 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 13:40:12 +0300 |
commit | 7c6953f2e5197275efdd5553b59a5d8df40cff38 (patch) | |
tree | 43842553f256bb208f6f43cd0fcbf069cced63bc | |
parent | fd75073ead22af51224691c3bd58097aa5030ab4 (diff) | |
download | arching-kaos-tools-7c6953f2e5197275efdd5553b59a5d8df40cff38.tar.gz arching-kaos-tools-7c6953f2e5197275efdd5553b59a5d8df40cff38.tar.bz2 arching-kaos-tools-7c6953f2e5197275efdd5553b59a5d8df40cff38.zip |
The bash script I am using to create the CHANGELOG file
-rwxr-xr-x | gen-changelog.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gen-changelog.sh b/gen-changelog.sh new file mode 100755 index 0000000..9945958 --- /dev/null +++ b/gen-changelog.sh @@ -0,0 +1,3 @@ +#!/bin/bash +git -P log --summary | grep -e ' ' -e 'commit' -e 'Date:' | sed -e 's/commit /---\n/g' -e 's/Date: //g' > CHANGELOG + |