format
This commit is contained in:
parent
bbff4013f3
commit
18e2154931
1 changed files with 10 additions and 9 deletions
|
@ -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 \
|
||||
"${@}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue