Buat tag secara lokal

#Create a tag locally
git tag <tagname>
#To add a description 
git tag <tagname> -a
#To push all tags to remote 
git push origin --tags
#To push a signle tag to remote
git push origin <tag>
Mushy Mallard