jenkins pipeline으로 git소스 checkout 받는 소스
stage('Clone') {
steps {
echo 'Clone'
git branch: 'master', credentialsId: 'credentail id', url: 'git repo에서 복사한 url'
}
}
credentialsId관련은
https://hongddo.tistory.com/208
에서 ※credentialsId 등록방법 를 참고한다.
'CI_CD > jenkins' 카테고리의 다른 글
[jenkins] pipeline svn checkout 방법 (0) | 2021.09.01 |
---|---|
[jenkins] java.io.FileNotFoundException 에러 (0) | 2020.12.30 |
[jenkins] 한국시간으로 변경하기 (0) | 2020.12.18 |
[jenkins] 계정 생성 및 권한 부여 (0) | 2020.11.18 |
[jenkins] Choise parameter로 빌드하기 (0) | 2020.11.18 |