Vicky
Vicky

Reputation: 51

Jenkins workspace location

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

Answers (1)

gavsyuk
gavsyuk

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

Related Questions