Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gregmercer
Created December 7, 2012 19:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gregmercer/4235853 to your computer and use it in GitHub Desktop.
Save gregmercer/4235853 to your computer and use it in GitHub Desktop.
Git create new tag
#!/bin/bash
echo -n "Tag Name: "
read -e TAG
git tag $TAG
git push origin --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment