Reputation: 51
If I clone a github project in jenkins, where does the project exactly gets cloned in the Jenkins server? What is the exact location of Github project in jenkins server?
Upvotes: 0
Views: 275
Reputation: 306
When you run a Jenkins job with Git SCM, the Git repository will be cloned inside the job specific workspace, which can be found at ${JENKINS_HOME}/workspace/${JOB_NAME}
Upvotes: 2