Tags
# List all tags.
git tag
# Create a new tag, locally.
git tag -a TagName -m "Message"
# Delete a tag.
git tag -d TagName
# Push a tag to a remote (local by default).
git push origin TagName
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
# List all tags.
git tag
# Create a new tag, locally.
git tag -a TagName -m "Message"
# Delete a tag.
git tag -d TagName
# Push a tag to a remote (local by default).
git push origin TagName