source BRANCHES.sh
-git checkout grundlagen/docker
+if [ "$1" != "" ];
+then
+ # Der erste Parameter wird als SUFFIX interpretiert
+ git checkout grundlagen/docker--${1}
+else
+ git checkout grundlagen/docker
+fi
mkdir -p $VORLAGEN/grundlagen/docker/
rsync -av --exclude=.git --exclude=target --exclude=.idea --exclude=.gradle --exclude=build --exclude=BRANCHES.sh --exclude=BUILD.sh --exclude=COPY.sh --exclude=DIFF.sh --exclude=.gitignore --exclude=PUSH.sh --exclude=REBASE.sh --exclude=RESET.sh --exclude=TAG.sh . $VORLAGEN/grundlagen/docker/
for i in $BRANCHES;
do
declare -n branch=${i}
- git checkout $branch
+ if [ "$1" != "" ];
+ then
+ # Der erste Parameter wird als SUFFIX interpretiert
+ git checkout $branch--${1}
+ else
+ git checkout $branch
+ fi
if [[ $branch =~ "--vorlage" ]]
then
vorlage=$(echo $branch |sed -e 's/--vorlage$//')