Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Continuous Integration with Jenkins!
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 add src/main/java/com/example/math/Calculator.java
$ git add src/test/java/com/exa...