1
0
mirror of https://github.com/namibia/tips.git synced 2024-05-31 09:21:14 +00:00

Merge pull request #142 from blackjid/patch-1

Add alternative to remove remote tag
This commit is contained in:
hemanth.hm 2017-03-28 13:52:11 +05:30 committed by GitHub
commit 8aa8aa8692

View File

@ -291,7 +291,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