Question 10 of 100 from exam 350-901-DEVCOR: Developing Applications Using Cisco Core Platforms and APIs

Question 10 of 100 from exam 350-901-DEVCOR: Developing Applications Using Cisco Core Platforms and APIs

Question

DRAG DROP - Drag and drop the git commands from the left into the correct order on the right to create a feature branch from the master and then incorporate that feature branch into the master.

Select and Place:

Answer Area

git branch -d feature step 1
git checkout -b feature master step 2
git checkout master step 3
git push origin master step 4

git merge —no-ff feature

step 5

Explanations

Answer Area

git branch -d feature

git checkout -b feature master

git checkout -b feature master

git checkout master

git checkout master

git merge —no-f feature

git push origin master

git push origin master

git merge —no-ff feature

git branch -d feature