12 lines
260 B
Bash
Executable file
12 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
git log --graph --date-order \
|
|
--branches='*' \
|
|
--date=format:%y-%m-%d \
|
|
--format=format:\
|
|
'%x09'\
|
|
'%C(bold green)%h%Creset '\
|
|
'%C(bold blue)%cd%Creset '\
|
|
'%C(dim white)%><(24)%an%Creset '\
|
|
'%C(white)%s%C(reset)'\
|
|
'%C(bold yellow)%d%Creset'\
|
|
"$@"
|