This commit is contained in:
Marc Beninca 2024-11-16 19:08:27 +01:00
parent beb479ba7c
commit d8de9913ce
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -238,17 +238,19 @@ ggc() {
} }
# initialize a new repository # initialize a new repository
alias gi="\ gi() {
git \ git \
init \ init \
" "${@}"
}
# initialize a new bare repository # initialize a new bare repository
alias gib="\ gib() {
git \ git \
init \ init \
--bare \ --bare \
" "${@}"
}
# log commits history # log commits history
alias gl="\ alias gl="\