pipeline { agent any stages { stage('Stage 1') { steps { sh 'git checkout -f origin/master' echo 'Hello world!' } } } }