Complete the command to push all tags to the remote repository.
git push origin [1]The --tags option tells Git to push all tags to the remote repository.
Complete the command to push a specific tag named 'v1.0' to the remote repository.
git push origin [1]To push a specific tag, use its name directly after the remote name.
Fix the error in the command to push all tags to the remote repository.
git push origin [1]The correct option to push all tags is --tags. Other variants are invalid.
Fill both blanks to push a specific tag named 'release' to the remote named 'upstream'.
git push [1] [2]
The first blank is the remote name 'upstream'. The second blank is the tag name 'release'.
Fill all three blanks to push all tags to the remote named 'origin' and verify the push.
git push [1] [2] && git [3] --tags
First, push all tags to 'origin' using --tags. Then fetch tags from remote to verify.