Many people choose to display their logs using different formats, here so examples from my .gitconfig..
[alias]
l = log --graph --abbrev-commit
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
lga = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
Managing these is complex, so it could be useful to provide a way to better customize these, using plain javascript
Maybe load from ~/.turbo.js?
Many people choose to display their logs using different formats, here so examples from my
.gitconfig..Managing these is complex, so it could be useful to provide a way to better customize these, using plain javascript
Maybe load from
~/.turbo.js?