This commit is contained in:
Marc Beninca 2024-11-17 17:15:47 +01:00
parent bbff4013f3
commit 18e2154931
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -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 \
"${@}" "${@}"
} }