Skip to content
Dave Anderson edited this page Aug 17, 2013 · 3 revisions
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}

Clone this wiki locally