From d8de9913ce6c20ec99e62c4adb0aff8820e565e4 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 16 Nov 2024 19:08:27 +0100 Subject: [PATCH] gi,gib --- 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 801df15..977b3e0 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -238,17 +238,19 @@ ggc() { } # initialize a new repository -alias gi="\ -git \ -init \ -" +gi() { + git \ + init \ + "${@}" +} # initialize a new bare repository -alias gib="\ -git \ -init \ ---bare \ -" +gib() { + git \ + init \ + --bare \ + "${@}" +} # log commits history alias gl="\