glao,glo
This commit is contained in:
parent
a7219cf7fa
commit
510371ef24
1 changed files with 16 additions and 0 deletions
|
@ -307,6 +307,14 @@ a__git_log_all() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# log all history as oneline
|
||||||
|
glao() { a__git_log_all_oneline "${@}"; }
|
||||||
|
a__git_log_all_oneline() {
|
||||||
|
a__git_log_all \
|
||||||
|
--oneline \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# log all history with patches
|
# log all history with patches
|
||||||
glap() { a__git_log_all_patch "${@}"; }
|
glap() { a__git_log_all_patch "${@}"; }
|
||||||
a__git_log_all_patch() {
|
a__git_log_all_patch() {
|
||||||
|
@ -316,6 +324,14 @@ a__git_log_all_patch() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# log history as oneline
|
||||||
|
glo() { a__git_log_oneline "${@}"; }
|
||||||
|
a__git_log_oneline() {
|
||||||
|
a__git_log \
|
||||||
|
--oneline \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# log history with patches
|
# log history with patches
|
||||||
glp() { a__git_log_patch "${@}"; }
|
glp() { a__git_log_patch "${@}"; }
|
||||||
a__git_log_patch() {
|
a__git_log_patch() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue