From ad467c223cb4d2802d6bb34b340c55e2ee95c298 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 May 2023 22:18:05 +0200 Subject: [PATCH] gi --- bash/alias/git.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/bash/alias/git.sh b/bash/alias/git.sh index 07aaee2..7db6300 100644 --- a/bash/alias/git.sh +++ b/bash/alias/git.sh @@ -189,10 +189,17 @@ gc \ " # initialize a new repository -alias gi='git init' +alias gi="\ +git \ +init \ +" # initialize a new bare repository -alias gib='git init --bare' +alias gib="\ +git \ +init \ +--bare \ +" # log commits history alias gl='git log --all --graph \