Complete the command to delete a local Git tag named 'v1.0'.
git tag [1] v1.0
Use -d to delete a local tag safely.
Complete the command to delete a remote Git tag named 'release-2'.
git push origin [1] :refs/tags/release-2
Use --delete with git push to remove a remote tag.
Fix the error in the command to delete a remote tag named 'beta'.
git push origin [1] betaThe correct way to delete a remote tag is using git push origin --delete tagname.
Fill both blanks to delete a local tag 'v3.0' and then delete it from the remote named 'origin'.
git tag [1] v3.0 && git push origin [2] v3.0
Use -d to delete local tags and --delete to delete remote tags.
Fill all three blanks to delete a local tag 'test', force delete a local tag 'old', and delete a remote tag 'prod' from 'origin'.
git tag [1] test && git tag [2] old && git push origin [3] prod
Use -d for normal local delete, -D to force delete local tags, and --delete to remove remote tags.
