diff --git a/shell/alias/git.sh b/shell/alias/git.sh index 628799a..eb72938 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -1,3 +1,12 @@ +GIT_LOG_FORMAT="\ +%C(auto)%h%d +S %C(red)%GS +A %C(green)%ai + %C(green)%an %ae +C %C(blue)%ci + %C(blue)%cn %ce +%B" + # add to index ga() { git_add "${@}"; } git_add() { @@ -280,19 +289,11 @@ git_init_bare() { # log history gl() { git_log "${@}"; } git_log() { - local format="\ -%C(auto)%h%d -S %C(red)%GS -A %C(green)%ai - %C(green)%an %ae -C %C(blue)%ci - %C(blue)%cn %ce -%B" git \ log \ --abbrev=8 \ --abbrev-commit \ - --format="${format}" \ + --format="${GIT_LOG_FORMAT}" \ --graph \ "${@}" }