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
|
# add to index
|
||||||
ga() { git_add "${@}"; }
|
ga() { git_add "${@}"; }
|
||||||
git_add() {
|
git_add() {
|
||||||
|
@ -280,19 +289,11 @@ git_init_bare() {
|
||||||
# log history
|
# log history
|
||||||
gl() { git_log "${@}"; }
|
gl() { git_log "${@}"; }
|
||||||
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 \
|
git \
|
||||||
log \
|
log \
|
||||||
--abbrev=8 \
|
--abbrev=8 \
|
||||||
--abbrev-commit \
|
--abbrev-commit \
|
||||||
--format="${format}" \
|
--format="${GIT_LOG_FORMAT}" \
|
||||||
--graph \
|
--graph \
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue