bstroebl / DigitizingTools

A QGIS plugin, that subsumes different tools useful during digitizing sessions
GNU General Public License v2.0
22 stars 9 forks source link

Create a tag for each version that get uploaded in QGIS hub #1

Closed kalxas closed 11 years ago

kalxas commented 11 years ago

This way we can track changes between uploaded versions.

bstroebl commented 11 years ago

Could you please explain how to do that?

kalxas commented 11 years ago

Sure: From within the directory that plugin lives you have to run the command:

git tag -a x.y.z -m 'tagging x.y.z or other comment here'
git push --tags

In this case x.y.z is 0.1.0

This will have to be done at the release commit, If you have moved on with more commits you need to do a git checkout to the released commit and tag there.

bstroebl commented 11 years ago

Ok, I added tags and pushed them

kalxas commented 11 years ago

Thanks @bstroebl