diff options
author | Sven Gothel <[email protected]> | 2012-11-01 03:03:48 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-11-01 03:03:48 +0100 |
commit | 13afb4099aee3099a4fdd22289a4edfcaf536128 (patch) | |
tree | 024b3c62f5676f3be40d971b2ef4810e13b52206 | |
parent | 19912941d06d4bed28521b698ec5b8c1b20273e8 (diff) |
Update git tar-tag
-rwxr-xr-x | git/funcs_git.sh | 16 | ||||
-rwxr-xr-x | git/git-tag-tar-changelog.sh | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/git/funcs_git.sh b/git/funcs_git.sh index 3bfd66e..d7160a6 100755 --- a/git/funcs_git.sh +++ b/git/funcs_git.sh @@ -10,14 +10,14 @@ function git-new-milestone() { exit 1 fi - mkdir -p ../archive/Sources - mkdir -p ../archive/ChangeLogs + mkdir -p ../archive/$new/Sources + mkdir -p ../archive/$new/ChangeLogs echo "Module $module - Tag $new" - git archive --format=tar --prefix=$module-$new/ $new | 7z a -si ../archive/Sources/$module-$new.tar.7z -# git archive --format=tar --prefix=$module-$new/ $new | xz -z -9 > ../archive/Sources/$module-$new.tar.xz -# git archive --format=zip --prefix=$module-$new/ $new -o ../archive/Sources/$module-$new.zip - git log --no-merges $new ^$last > ../archive/ChangeLogs/$module-ChangeLog-$new.txt - git shortlog --no-merges $new ^$last > ../archive/ChangeLogs/$module-ShortLog-$new.txt - git diff --stat --summary -M $last $new > ../archive/ChangeLogs/$module-diffstat-$new.txt + git archive --format=tar --prefix=$module-$new/ $new | 7z a -si ../archive/$new/Sources/$module-$new.tar.7z +# git archive --format=tar --prefix=$module-$new/ $new | xz -z -9 > ../archive/$new/Sources/$module-$new.tar.xz +# git archive --format=zip --prefix=$module-$new/ $new -o ../archive/$new/Sources/$module-$new.zip + git log --no-merges $new ^$last > ../archive/$new/ChangeLogs/$module-ChangeLog-$new.txt + git shortlog --no-merges $new ^$last > ../archive/$new/ChangeLogs/$module-ShortLog-$new.txt + git diff --stat --summary -M $last $new > ../archive/$new/ChangeLogs/$module-diffstat-$new.txt } diff --git a/git/git-tag-tar-changelog.sh b/git/git-tag-tar-changelog.sh index babcf95..60535cc 100755 --- a/git/git-tag-tar-changelog.sh +++ b/git/git-tag-tar-changelog.sh @@ -9,8 +9,8 @@ if [ -z "$artifacts" ] ; then fi branch=rc -tag_old=v2.0-rc4 -tag=v2.0-rc5 +tag_old=v2.0-rc10 +tag=v2.0-rc11 sdir=`dirname $0` thisdir=`pwd` |