diff --git a/Jenkinsfile b/Jenkinsfile
index b757440f2a49270592da5c7ca3be65b6a61a583a..c4b3d95b627f0dd4a29787b6aa0f8223d04ddc6c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -343,7 +343,7 @@ Void configureGit() {
 
 Void cloneGitopsRepo() {
     withCredentials([usernamePassword(credentialsId: 'jenkins-gitea-access-token', passwordVariable: 'TOKEN', usernameVariable: 'USER')]) {
-        sh 'git clone https://${USER}:${TOKEN}@git.ozg-sh.de/mgm/gitops.git'
+        sh 'git clone https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-devops/gitops.git'
     }
 
     configureGit()
@@ -367,7 +367,7 @@ Void pushNewGitopsVersion(String environment) {
             sh "git add ${environment}/application/values/user-manager-values.yaml"
 
             sh "git commit -m 'jenkins rollout ${environment} user-manager version ${IMAGE_TAG}'"
-            sh 'git push https://${USER}:${TOKEN}@git.ozg-sh.de/mgm/gitops.git'
+            sh 'git push https://${USER}:${TOKEN}@git.ozg-sh.de/ozgcloud-devops/gitops.git'
         }
     }
 }