...
Create a git repo as normal
Make changes to the code base
git add .
git commit -m <message>
git tag -a <tag id> -m <message relating to the tag>
git push origin <tag id>master
git push origin master<tag id>
Lines 6 and 7 can be swapped.
...
...
Create a git repo as normal
Make changes to the code base
git add .
git commit -m <message>
git tag -a <tag id> -m <message relating to the tag>
git push origin <tag id>master
git push origin master<tag id>
Lines 6 and 7 can be swapped.
...