diff --git a/shell/alias/git.sh b/shell/alias/git.sh index 7a74031..00bc731 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -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 \ + "${@}" +}