Skip to content

Instantly share code, notes, and snippets.

@rkaneko
Created July 30, 2014 01:34
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 rkaneko/10b85db3aeab103771ed to your computer and use it in GitHub Desktop.
Save rkaneko/10b85db3aeab103771ed to your computer and use it in GitHub Desktop.
Git tag. GitHub release page.

Git tag

# list
$ git tag -l
ver0.1.0
ver0.1.1

# create tag
$ git tag v0.9.0

# push tag to remote branch
$ git push origin v0.9.0

When you finished above command, check your GitHub repository's release and tags page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment