Skip to content

Instantly share code, notes, and snippets.

@dsci
Created December 19, 2011 08:23
Show Gist options
  • Save dsci/1496067 to your computer and use it in GitHub Desktop.
Save dsci/1496067 to your computer and use it in GitHub Desktop.
Creating and pushing tags (Git)
# Create an unsigned tag.
git tag -a vPreview19122011 -m 'preview version for product review 19th December 2011'
# List tags
git tag
# Push tags.
git push --tags
# Push a single tag
git push origin develop vPreview19122011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment