]> juplo.de Git - demos/kafka/training/commitdiff
REBASE.sh und TAG.sh gelöscht
authorKai Moritz <kai.milan.moritz@googlemail.com>
Fri, 29 May 2026 23:20:19 +0000 (23:20 +0000)
committerKai Moritz <kai.milan.moritz@googlemail.com>
Fri, 29 May 2026 23:20:19 +0000 (23:20 +0000)
REBASE.sh ist obsolet: Rebases werden manuell mit Claude durchgeführt,
da sie von Inhalt und Branch-Abhängigkeiten abhängen und nicht sinnvoll
zu skripten sind.

TAG.sh ist obsolet: Session-Tags werden von Claude direkt vergeben.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
REBASE.sh [deleted file]
TAG.sh [deleted file]

diff --git a/REBASE.sh b/REBASE.sh
deleted file mode 100755 (executable)
index 3de6255..0000000
--- a/REBASE.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-set -e
-
-source BRANCHES.sh
-
-for i in $BRANCHES;
-do
-  declare -n root=${i}__ROOT
-  declare -n branch=${i}
-  echo -e "\nRebasing $branch on $root"
-  git rebase $root $branch;
-done
-
-git checkout scripting
diff --git a/TAG.sh b/TAG.sh
deleted file mode 100755 (executable)
index 6f3802b..0000000
--- a/TAG.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-set -e
-
-source BRANCHES.sh
-
-if [ "$1" == "" ]
-then
-  echo "Prefix for tag is missing"
-  exit 1;
-fi
-
-for i in grundlagen__docker $BRANCHES;
-do
-  declare -n branch=${i}
-  echo -e "\nTagging $branch with ${branch}--$1\n"
-  git tag -f ${branch}--$1 $branch
-  git push --force origin ${branch}--$1
-done