tag
This commit is contained in:
parent
e5c43ae676
commit
5f23aadfe5
1 changed files with 11 additions and 9 deletions
|
@ -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 \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue