This commit is contained in:
Marc Beninca 2023-05-14 22:18:05 +02:00
parent db5874722a
commit ad467c223c

View file

@ -189,10 +189,17 @@ gc \
" "
# initialize a new repository # initialize a new repository
alias gi='git init' alias gi="\
git \
init \
"
# initialize a new bare repository # initialize a new bare repository
alias gib='git init --bare' alias gib="\
git \
init \
--bare \
"
# log commits history # log commits history
alias gl='git log --all --graph \ alias gl='git log --all --graph \