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
alias gt="\
git \
tag \
"
gt() {
git \
tag \
"${@}"
}
# delete a tag
alias gtd="\
git \
tag \
--delete \
"
gtd() {
git \
tag \
--delete \
"${@}"
}