This commit is contained in:
Marc Beninca 2024-11-17 02:55:45 +01:00
parent e5c43ae676
commit 5f23aadfe5
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -456,14 +456,16 @@ show \
" "
# tag a commit # tag a commit
alias gt="\ gt() {
git \ git \
tag \ tag \
" "${@}"
}
# delete a tag # delete a tag
alias gtd="\ gtd() {
git \ git \
tag \ tag \
--delete \ --delete \
" "${@}"
}