Skip to content

Instantly share code, notes, and snippets.

@corinneling
Last active December 5, 2018 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corinneling/701102e8cf9449a05c3f9dc0b19d7f23 to your computer and use it in GitHub Desktop.
Save corinneling/701102e8cf9449a05c3f9dc0b19d7f23 to your computer and use it in GitHub Desktop.
How to Create a Tag for a GitHub Release

How to Create a Tag for a GitHub Release

  1. From the master branch create the tag
    • git tag -a tag_name -m 'message here'
  2. Push up the tag
    • git push origin tag_name
    • Or push all tagsgit push --tags
  3. In GitHub navigate to the releases tab, next to the branches tag
  4. Select the Tags button
  5. Click the group of three dots in the right corner
  6. Select Create a Release
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment