Skip to content

Commit 8aa8aa8

Browse files
authored
Merge pull request git-tips#142 from blackjid/patch-1
Add alternative to remove remote tag
2 parents 1078b41 + af614c2 commit 8aa8aa8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,13 @@ git tag -d <tag-name>
291291

292292
## Delete remote tag
293293
```sh
294-
git push origin :refs/tags/<tag-name>
294+
git push origin :<remote_tagname>
295+
```
296+
297+
298+
__Alternatives:__
299+
```sh
300+
git push origin :refs/tags/<remote_tagname>
295301
```
296302

297303
## Undo local changes with the last content in head

0 commit comments

Comments
 (0)