From 11eb785603e041c39f8eda6142c8e7f8316d34de Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 10 Jun 2017 00:51:06 +0200 Subject: [PATCH] new script for fixing git author stuff added (see git filter-branch) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- git-author-jprojects.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 git-author-jprojects.sh diff --git a/git-author-jprojects.sh b/git-author-jprojects.sh new file mode 100755 index 0000000..bc5703a --- /dev/null +++ b/git-author-jprojects.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +. ./.jprojects.sh || exit 255 + +for project in ${LIST}; do + if [ "${project}" = "jprojects-scripts" ] + then + echo "$0: Skipping jprojects-scripts ..." + continue + fi + + echo "$0: Handling '${project}' ..." + cd "${JPROJECTS_HOME}/${project}" + sh /opt/bin/git-author.sh +done + +echo "$0: All done." +exit 0 -- 2.39.2