gl
This commit is contained in:
parent
afac1464dc
commit
e6d67ac56e
1 changed files with 25 additions and 7 deletions
|
@ -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="\
|
||||
|
|
Loading…
Reference in a new issue