git tips
How to create git repository on server
$ git init -bare —shared test.git
$ git update-server-info
Create tag
# Annotated Tags
$ git tag -a v1.4 -m 'my version 1.4'
# Lightweight Tags
$ git tag v1.4-lw
Sharing Tags
git push origin --tags
Check out Tags
$ git checkout -b version2