diff --git a/gitlab-ci.yml b/gitlab-ci.yml index 919b5349129b6e573ebf906d983e22a3ae2954fb..84b4886586187bdd94403bdd21e37ad80d8ff253 100644 --- a/gitlab-ci.yml +++ b/gitlab-ci.yml @@ -27,7 +27,6 @@ sync: - echo "${CI_SERVER_PROTOCOL}://${GIT_PUSH_LOGIN}:${GIT_PUSH_PASSWORD}@${CI_SERVER_HOST}" >> ~/.git-credentials || true - ( test -n "${GIT_LOGIN}" && test -n "${GIT_PASSWORD}" ) && echo "https://${GIT_LOGIN}:${GIT_PASSWORD}@$(echo ${GIT_URL} | sed -r 's#([^/])/[^/].*#\1#' | sed -e 's|https://||g')" >> ~/.git-credentials || true - ( eval $(ssh-agent -s); echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null && mkdir -p ~/.ssh && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config ) || true - - cat ~/.git-credentials - git remote add upstream "${GIT_URL}" && git fetch upstream - - git checkout master && git merge upstream/"${GIT_UPSTGREAM_BRANCH}" + - git checkout --track origin/master && git merge upstream/"${GIT_UPSTGREAM_BRANCH}" - git push