176 bytes added ,  19 September 2019
→‎Tags: add remove tags
→‎Tags: add remove tags
Line 141: Line 141:
<source lang="bash">
<source lang="bash">
$ git push origin --tags
$ git push origin --tags
</source>
Remove a tag locally
<source lang="bash">
$ git tag -d <tagname>
</source>
Remove a tag on the remote repo
<source lang="bash">
$ git push --delete origin v0.1.8
</source>
</source>