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

View file

@ -252,14 +252,21 @@ gib() {
"${@}" "${@}"
} }
# log commits history # log all history
alias gl="\ gla() {
glb \
--all \
"${@}"
}
# log branch history
glb() {
git \ git \
log \ log \
--all \
--graph \ --graph \
--format=\"%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B\" \ --format="%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B" \
" "${@}"
}
# log medium information # log medium information
alias glm="\ alias glm="\