Complete the code to delete a local Git branch named 'feature'.
git branch [1] featureThe -d option safely deletes a local branch if it has been merged.
Complete the code to force delete a local Git branch named 'bugfix'.
git branch [1] bugfixThe -D option force deletes a local branch even if it is not merged.
Fix the error in the command to delete a remote branch named 'release'.
git push origin [1] releaseThe correct option to delete a remote branch is --delete.
Fill both blanks to delete a remote branch named 'hotfix' from origin.
git push [1] [2] hotfix
Use origin as the remote name and --delete to remove the remote branch.
Fill all three blanks to delete a local branch 'test', then delete the remote branch 'test' from origin.
git branch [1] test && git push [2] [3] test
First, force delete the local branch with -D. Then push to origin with --delete to remove the remote branch.
