gla,glb
This commit is contained in:
parent
d8de9913ce
commit
7a1320e108
1 changed files with 15 additions and 8 deletions
|
@ -252,14 +252,21 @@ gib() {
|
|||
"${@}"
|
||||
}
|
||||
|
||||
# log commits history
|
||||
alias gl="\
|
||||
# log all history
|
||||
gla() {
|
||||
glb \
|
||||
--all \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# log branch history
|
||||
glb() {
|
||||
git \
|
||||
log \
|
||||
--all \
|
||||
--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
|
||||
alias glm="\
|
||||
|
|
Loading…
Reference in a new issue