summaryrefslogtreecommitdiffstats
path: root/git/git-changelog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'git/git-changelog.sh')
-rwxr-xr-xgit/git-changelog.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/git/git-changelog.sh b/git/git-changelog.sh
deleted file mode 100755
index 33719ec..0000000
--- a/git/git-changelog.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-module="$1"
-last="$2"
-new="$3"
-
-if [ -z "$module" -o -z "$last" -o -z "$new" ] ; then
- echo "Usage: $0 module last-ref new-ref"
- exit 1
-fi
-
-echo "Module $module - Tag $new"
-#echo "git archive --prefix=$module-$new/ $new | lzma -9 > ../$module-$new.tar.lzma"
-git log --no-merges $new ^$last > ../$module-ChangeLog-$new
-git shortlog --no-merges $new ^$last > ../$module-ShortLog
-git diff --stat --summary -M $last $new > ../$module-diffstat-$new