mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# Prettier git log
|
|
function gl() {
|
|
git log --graph \
|
|
--pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \
|
|
--abbrev-commit
|
|
}
|