keycloak-scim/sync.sh

30 lines
733 B
Bash
Raw Normal View History

2018-09-25 06:48:40 +00:00
#!/bin/bash
2019-02-21 08:09:08 +00:00
BRANCHES="upstream/master prod/3.4.x prod/4.8.x"
echo "-----------------------------------------------------------------"
echo "Fetching remotes"
echo ""
2018-09-25 06:48:40 +00:00
git fetch upstream
git fetch gitlab
git fetch prod
2019-02-21 08:09:08 +00:00
echo "-----------------------------------------------------------------"
for i in $BRANCHES; do
TARGET_BRANCH=`echo $i | cut -d '/' -f 2`
echo "Syncing $i to gitlab/$TARGET_BRANCH"
echo ""
git branch | grep " tmp-$TARGET_BRANCH$" &>/dev/null && git branch -D tmp-$TARGET_BRANCH
git checkout $i -b tmp-$TARGET_BRANCH
git push gitlab tmp-$TARGET_BRANCH:$TARGET_BRANCH
git checkout master
git branch -D tmp-$TARGET_BRANCH
echo "-----------------------------------------------------------------"
done