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
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="\