diff --git a/home/program/bash/module/Git.sh b/home/program/bash/module/Git.sh index e51502a..e541bbb 100644 --- a/home/program/bash/module/Git.sh +++ b/home/program/bash/module/Git.sh @@ -116,6 +116,11 @@ function gt() { git tag "${@}" } +# Git tag delete. +function gtd() { + git tag -d "${@}" +} + # Git ignore files. function gi() { git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached