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
|
# log commits history
|
||||||
alias gl='git log --all --graph \
|
alias gl="\
|
||||||
--format="%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B"'
|
git \
|
||||||
|
log \
|
||||||
# log commits history with patches
|
--all \
|
||||||
alias glp='git log --all --graph \
|
--graph \
|
||||||
--format="%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B" --patch'
|
--format=\"%C(auto)%h%d %C(red)%ai%C(auto) %an%n%B\" \
|
||||||
|
"
|
||||||
|
|
||||||
# log medium information
|
# 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
|
# abort the current merge commit
|
||||||
alias gma="\
|
alias gma="\
|
||||||
|
|
Loading…
Reference in a new issue