diff --git a/Jenkinsfile b/Jenkinsfile index 41c2d38..4780ad3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,8 +32,9 @@ pipeline { stages { stage('Checkout Source Code') { steps { - git 'https://git.frovide.com/kegorii/frovide.com.git' // 본인의 Git 저장소 URL로 변경 - // credentialsId: 'your-git-credential-id' // Git Credential 필요시 + git branch: 'main', url: 'https://git.frovide.com/kegorii/frovide.com.git' + // 만약 main 브랜치가 아닌 다른 브랜치라면 해당 브랜치 이름으로 변경해주세요. + // 예: git branch: 'develop', url: '...' } }