We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580745f commit 5cd72d6Copy full SHA for 5cd72d6
bin/git-delete-tag
@@ -2,4 +2,4 @@
2
#
3
# Delete a tag, both locally and from the origin remote
4
5
-git tag -d $1 && git push origin :refs/tags/$1
+git tag -d "$1" && git push origin ":refs/tags/$1"
bin/git-nuke
@@ -9,5 +9,5 @@
9
# git nuke add-git-nuke
10
set -o errexit
11
12
-git branch -D $1
13
-git push origin :$1
+git branch -D "$1"
+git push origin ":$1"
0 commit comments