QuestionQ16
Software Development and DesignDrag and drop the Git commands into the correct sequence to create a feature branch from master, then merge that feature branch into master.
Drag & Drop
git branch -d feature
git checkout -b feature master
git checkout master
git push origin master
git merge --no-ff feature
step 1
step 2
step 3
step 4
step 5
Community Discussion