Complete the code to delete a remote branch named 'feature' using git.
git push origin [1]To delete a remote branch, you use git push origin --delete branch_name.
Complete the command to delete the remote branch 'bugfix' from the remote named 'upstream'.
git push [1] --delete bugfixThe remote name is specified after git push. Here, it is upstream.
Fix the error in the command to delete remote branch 'test' from 'origin'.
git push origin [1] testThe correct flag to delete a remote branch is --delete, not '-d' or other words.
Fill both blanks to delete the remote branch 'release' from remote 'origin' and then verify the branch list.
git push [1] [2] release && git branch -r
Use git push origin --delete release to delete the remote branch, then git branch -r to list remote branches.
Fill all three blanks to delete remote branch 'hotfix', fetch updates, and prune deleted branches.
git push [1] [2] hotfix && git fetch [3] --prune
First, delete the remote branch with git push origin --delete hotfix. Then fetch and prune with git fetch origin --prune to update local references.