more theres

This commit is contained in:
gilesb 2023-10-23 17:47:01 +01:00 committed by giles
parent d1d90aa2ad
commit 2606aa18d8
2 changed files with 32 additions and 30 deletions

View File

@ -61,21 +61,22 @@ jobs:
echo 'pushed new branch and created pr'; echo 'pushed new branch and created pr';
else else
if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then if [[ $(git diff origin/${{ env.DEVELOPMENT_BRANCH }} | wc -c) -ne 0 ]]; then
git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned git rebase -Xtheirs origin/${{ env.DEVELOPMENT_BRANCH }}
git -C ../cloned fetch origin #--depth=1 #git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned
git -C ../cloned checkout $DEVELOPMENT_BRANCH || git -C ../cloned checkout -b $DEVELOPMENT_BRANCH #git -C ../cloned fetch origin #--depth=1
mv ../cloned/.git .. #git -C ../cloned checkout $DEVELOPMENT_BRANCH || git -C ../cloned checkout -b $DEVELOPMENT_BRANCH
rm -rf ../cloned #mv ../cloned/.git ..
cp -r . ../cloned #rm -rf ../cloned
rm -rf ../cloned/.git #cp -r . ../cloned
mv ../.git ../cloned #rm -rf ../cloned/.git
mv .git/config ../cloned/.git #mv ../.git ../cloned
rm -r ./* #mv .git/config ../cloned/.git
rm -r .git #rm -r ./*
mv ../cloned/* . #rm -r .git
mv ../cloned/.git . #mv ../cloned/* .
git add -A #mv ../cloned/.git .
git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}" #git add -A
#git commit -a -m "${{ github.ref_name }} -> ${{ env.DEVELOPMENT_BRANCH }}"
git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }}; git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }};
else else
echo 'no changes so no push' echo 'no changes so no push'

View File

@ -43,21 +43,22 @@ jobs:
git push origin HEAD:${{ env.BUILD_BRANCH }}; git push origin HEAD:${{ env.BUILD_BRANCH }};
else else
if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then if [[ $(git diff origin/${{ env.BUILD_BRANCH }} | wc -c) -ne 0 ]]; then
git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned git rebase -Xtheirs origin/${{ env.BUILD_BRANCH }}
git -C ../cloned fetch origin #--depth=1 #git clone ${{ github.serverUrl }}/${{ github.repository }} ../cloned
git -C ../cloned checkout $BUILD_BRANCH || git -C ../cloned checkout -b $BUILD_BRANCH #git -C ../cloned fetch origin #--depth=1
mv ../cloned/.git .. #git -C ../cloned checkout $BUILD_BRANCH || git -C ../cloned checkout -b $BUILD_BRANCH
rm -rf ../cloned #mv ../cloned/.git ..
cp -r . ../cloned #rm -rf ../cloned
rm -rf ../cloned/.git #cp -r . ../cloned
mv ../.git ../cloned #rm -rf ../cloned/.git
mv .git/config ../cloned/.git #mv ../.git ../cloned
rm -r ./* #mv .git/config ../cloned/.git
rm -r .git #rm -r ./*
mv ../cloned/* . #rm -r .git
mv ../cloned/.git . #mv ../cloned/* .
git add -A #mv ../cloned/.git .
git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} " #git add -A
#git commit -a -m "${{ github.ref_name }} -> ${{ env.BUILD_BRANCH }} "
git push origin HEAD:${{ env.BUILD_BRANCH }} git push origin HEAD:${{ env.BUILD_BRANCH }}
else else
echo 'no changes so no push' echo 'no changes so no push'