Complete the command to create a new feature branch in Gitflow.
git checkout -b [1] developIn Gitflow, feature branches start with feature/ and branch off from develop.
Complete the command to finish a feature branch and merge it back into develop.
git checkout develop && git [1] feature/new-featureTo finish a feature, you merge it back into the develop branch using git merge.
Fix the error in the command to start a hotfix branch from master.
git checkout -b [1] masterHotfix branches start with hotfix/ and branch from master to fix urgent bugs.
Fill both blanks to create a release branch and push it to remote.
git checkout -b [1] develop && git push origin [2]
Release branches start with release/ and are created from develop. You push the same branch name to remote.
Fill all three blanks to finish a hotfix: merge into master, tag it, and merge into develop.
git checkout master && git [1] hotfix/1.0.1 && git tag [2] && git checkout develop && git [3] hotfix/1.0.1
Finish a hotfix by merging it into master, tagging the release, then merging it back into develop.