We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
git tag
Lists tags
git tag -a 2.0 -m "Mid August Release"
Adds a tag pointing to the current branch's last commit.
git push upstream 2.0
Pushes the tag to the upstream repository
git describe 2.0-12-g1416509
Shows the branches last commit as {last tag name}-{revisions since}-{short hash of commit}
{last tag name}-{revisions since}-{short hash of commit}