I created this simple pipeline where I am pulling a bitbucket repo -
pipeline {
agent any
stages {
stage('Checkout from bitbucket') {
steps {
echo "Hello World"
git branch: 'feature/myFeature', changelog: false, credentialsId: 'my_bitbucket', poll: false, url: 'https://username@bitbucket.org/IT_AEM/infrastructure.git'
}
}
}
}
When I run the build, it succeeds. Where is the git repo downloaded in Jenkins and where can I view it?
Cheers