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
|
# 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="\
|
||||||
|
|
Loading…
Reference in a new issue