From 5f23aadfe598504f1e8a13fe2bcda72ba862260b Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 17 Nov 2024 02:55:45 +0100 Subject: [PATCH] tag --- shell/alias/git.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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 \ + "${@}" +}