Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Instruction

Multibranch Pipelines and Jenkinsfile

Let's suppose I want to add a new multiply function to my Calculator class. I check out a new feature branch named multiply, commit my changes there, and push them. (See our Git Branches and Merging course if you're not familiar with branches.)

$ git checkout -b multiply
Switched to a new branch 'multiply'
$ git ...