Add alternative to remove remote tag

This commit is contained in:
Juan Ignacio Donoso 2017-03-09 14:22:47 -05:00
parent c98730cb76
commit af614c269e
1 changed files with 7 additions and 1 deletions

View File

@ -285,7 +285,13 @@ git tag -d <tag-name>
## Delete remote tag
```sh
git push origin :refs/tags/<tag-name>
git push origin :<remote_tagname>
```
__Alternatives:__
```sh
git push origin :refs/tags/<remote_tagname>
```
## Undo local changes with the last content in head