nerdexam
Cisco

350-901 · Question #56

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.

Correct sequence: 1. git checkout -b feature master 2. git checkout master 3. git merge --no-ff feature 4. git push origin master 5. git branch -d feature

Software Development and Design

Question

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.

Exhibits

350-901 question #56 exhibit 1
350-901 question #56 exhibit 2

Explanation

Correct sequence:

  1. git checkout -b feature master
  2. git checkout master
  3. git merge --no-ff feature
  4. git push origin master
  5. git branch -d feature

Topics

#Git#Version Control#Branching and Merging

Community Discussion

No community discussion yet for this question.

Full 350-901 Practice