4,461
edits
→Remove a tag: remove |
→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> | ||