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
Explanation
Correct sequence:
- git checkout -b feature master
- git checkout master
- git merge --no-ff feature
- git push origin master
- git branch -d feature
Topics
#Git#Version Control#Branching and Merging
Community Discussion
No community discussion yet for this question.

