This commit is contained in:
Marc Beninca 2023-05-14 22:47:03 +02:00
parent afac1464dc
commit e6d67ac56e

View file

@ -202,15 +202,33 @@ init \
"
# log commits history
alias gl='git log --all --graph \
--format="%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B"'
# log commits history with patches
alias glp='git log --all --graph \
--format="%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B" --patch'
alias gl="\
git \
log \
--all \
--graph \
--format=\"%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B\" \
"
# log medium information
alias glm='git log --all --decorate --graph --pretty=medium'
alias glm="\
git \
log \
--all \
--decorate \
--graph \
--pretty=medium \
"
# log commits history with patches
alias glp="\
git \
log \
--all \
--graph \
--format=\"%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B\" \
--patch \
"
# abort the current merge commit
alias gma="\