How to tag a release on command line
git remote (displays the name of your remote, for example YourRemote) git tag a 0.1.0 m 'tagging Version 0.1.0' (creates tag 0.1.0 from current branch) git push origin tags (pus...
Alok Choudhary
Austin, TX
1 min read
- git remote (displays the name of your remote, for example YourRemote)
- git tag -a 0.1.0 -m ‘tagging Version 0.1.0’ (creates tag 0.1.0 from current branch)
- git push origin —tags (pushes the tag you’ve created to YourRemote)